Views
No views yet



git clone https://github.com/qhilipp/FashionClassifiercd FashionClassifierdocker build -t fashion-classifier:latest .docker run --name fashion-classifier-container -v $(pwd):/app fashion-classifier:latest python3.13 main.py --load modelgit clone https://github.com/qhilipp/FashionClassifiercd FashionClassifierpython -m venv env or with Conda conda create -n fashion-classifier python=3.13source evn/bin/activate or with Conda conda activatepip install -r requirements.txtpython main.py --load model| Argument | Shortform | Type | Description | Default Value |
|---|---|---|---|---|
--load | -l | str | The name of the file from which the model should be loaded. | None |
--save | -s | str | The name of the file to which the model should be saved. | None |
--device | -d | str | The device on which PyTorch should perform the tensor calculations (cpu or cuda, if available). | 'cpu' |
--epochs | -e | int | The number of epochs used to train the model. | 20 |
--trials | -t | int | The number of trials to find optimal hyperparameters. | 5 |
--trial_epochs | -te | int | The number of epochs per trial when finding optimal hyperparameters. | 2 |
--load_hyper_parameters | -lh | str | The name of a JSON file from which the model should load its hyperparameters. | None |
--save_hyper_parameters | -sh | str | The name of a JSON file to which the model should save its hyperparameters. | None |