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
I'm aware of valid_split argument in tabnet_config() but it uses a proportion of train set as validation set. I have standalone validation sets, how can I use them during training goes on a separate data ?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Hello @sametsoekel
There is not such a possibility for now in the package.
The easiest way to achieve it is to make a tabnet_fit() loop without split on your training-set, resuming the previous epoch weights via from_model= configuration option, and predict on your validation-set at each epoch to compute your val-loss.
You will be able to see the end-to-end training loss with autoplot() as it is accumulated in the model.
The more performant way is to modify the training loop in
Hi,
I'm aware of
valid_split
argument intabnet_config()
but it uses a proportion of train set as validation set. I have standalone validation sets, how can I use them during training goes on a separate data ?Thanks in advance.
The text was updated successfully, but these errors were encountered: