Metadata-Version: 2.1
Name: ClintonPytorcchTrainer
Version: 0.0.1
Summary: PyTorch Trainer Class
Home-page: 
Author: Clinton Nyaore
Author-email: cnyaore@gmail.com
License: MIT
Keywords: pytorch
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE.txt

This is a PyTorch Model Trainer Class. It trains, validates input data.
It also saves the model after training to avoid retraining.
The class takes in 7 arguments i.e. device, epochs, model, criterion, optimizer, trainloader, valloader.
It has 2 methods:: (1). model_train_validate(). This train, validate data.It also plots learning curves.Finally it saves the model to avoid retraining it.(2). load_model().This loads your saved model from the above function i.e. model_train_validate().

Change Log
=================

0.0.1 (28/01/2023)
- First Release
