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
At the moment the EMC active learning package initializes the training and test set randomly using tr_ind, te_ind = al.initialize(). Is it possible to initialize the test set manually?
The text was updated successfully, but these errors were encountered:
The initialize function returns two n-dimensional numpy arrays containing the training and test indices which are randomly assigned. If you want to do this manually, then skip this function call and define your own lists/ndarrays with indices and assign them to tr_ind, te_ind and pass them to the deposit function as referred to on the active learning documentation page.
At the moment the EMC active learning package initializes the training and test set randomly using
tr_ind, te_ind = al.initialize()
. Is it possible to initialize the test set manually?The text was updated successfully, but these errors were encountered: