files: trainer.py config_0.py Folder name: 'Train' (Training data folder) Folder name: 'Test' (Testing data folder)
Dump default configurations to the config.yaml file as reference
python trainer.py --print_config>config.yaml
nano config.yaml
model.learning_rate: 0.001 (Can be configured in the code) model.training_dataset_folder: train (training data folder) model.testing_dataset_folder: test (testing data folder) model.batch_size: 4
python trainer.py --config config.yaml --trainer.max_epochs 200
tensorboard --logdir ./lightning_logs
open the link that is given in the command line. Most probably it will be http://localhost:6006/.
We can visualise the training and testing loss and accuracy per step and per epoch.