EfficientAD Epochs and Validation split #2774
-
My Code: from anomalib.data import Folder datamodule = Folder( datamodule.setup() model = EfficientAd() engine.fit(model=model, datamodule=datamodule)
Calculate Validation Dataset Quantiles: 100%|██████████| 6/6 [00:08<00:00, 1.37s/it] |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
still waiting for the response |
Beta Was this translation helpful? Give feedback.
-
Hi, Engine takes almost all arguments that the lighting trainer does. So you can either set max_epochs argument or max_steps. About abnormal samples, you'll need to add them to validation or test folder, depending on your setup. Since the learning type if unsupervised, they will be ignored in (removed from) training set. |
Beta Was this translation helpful? Give feedback.
-
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Beta Was this translation helpful? Give feedback.
Hi, Engine takes almost all arguments that the lighting trainer does. So you can either set max_epochs argument or max_steps.
About abnormal samples, you'll need to add them to validation or test folder, depending on your setup. Since the learning type if unsupervised, they will be ignored in (removed from) training set.