We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can continue the conversation there. Go to discussion →
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The number of epoch is 999 when using EfficentAD I want to change this.
The text was updated successfully, but these errors were encountered:
Are you using CLI or API?
you could set max_epochs argument from the Engine.
max_epochs
Engine
anomalib train --model anomalib.models.EfficientAd --data MVTec --trainer.max_epochs 3
from anomalib.data import MVTec from anomalib.models import EfficientAd from anomalib.engine import Engine datamodule = MVTec() model = EfficientAd() engine = Engine(max_epochs=10) engine.train(datamodule=datamodule, model=model)
Sorry, something went wrong.
No branches or pull requests
What is the motivation for this task?
The number of epoch is 999 when using EfficentAD
I want to change this.
Describe the solution you'd like
The number of epoch is 999 when using EfficentAD
I want to change this.
Additional context
The number of epoch is 999 when using EfficentAD
I want to change this.
The text was updated successfully, but these errors were encountered: