-
Notifications
You must be signed in to change notification settings - Fork 709
New issue
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
Fix Readmes #46
Fix Readmes #46
Conversation
python tools/train.py # Train PADIM on MVTec leather | ||
``` | ||
|
||
Training a model on a specific dataset and category requires further configuration. Each model has its own configuration | ||
file, [`config.yaml`](https://gitlab-icv.inn.intel.com/algo_rnd_team/anomaly/-/blob/development/stfpm/anomalib/models/stfpm/config.yaml) | ||
, which contains data, model and training configurable parameters. To train a specific model on a specific dataset and | ||
category, the config file is to be provided: | ||
``` | ||
|
||
```bash | ||
python tools/train.py --model_config_path <path/to/model/config.yaml> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python tools/train.py --model_config_path anomalib/models/stfpm/config.yaml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To show that we have some sample configs for each algo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ashwinvaidya17! What an improvement! Only minor stuff on the main readme file. It's based on personal experience. When I first try a repo, I just copy paste the example code to see if it works. If not, I got annoyed easily :D
…kit/anomalib into refactor/ashwin/fix_readmes
Changes
Possible Issues
I have explained the models based on my understanding. Might be wrong. It would be nice to look into that first.