You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
For example, it is a common practice to do k fold data split to improve model performance. In order to do k fold split, each of my trial jobs need to train on a unique split, to do this, my trial jobs need to get a unique ID value.
In short, trial jobs need to get an Id if they need to corporate on something.
There are two possible solutions to implement this:
Use search space, need to add new type, such as sequence, can be implemented in either builtin or customized Tuner.
Add an API, such as nni.get_trial_id()
The text was updated successfully, but these errors were encountered:
We need to provide a new API in SDK, like nni.get_sequence_num(), enable NNI trial identify it's unique auto-incremented sequence ID(start from 0. e.g)
For example, it is a common practice to do k fold data split to improve model performance. In order to do k fold split, each of my trial jobs need to train on a unique split, to do this, my trial jobs need to get a unique ID value.
In short, trial jobs need to get an Id if they need to corporate on something.
There are two possible solutions to implement this:
The text was updated successfully, but these errors were encountered: