This repository contents different scripts for different models to allow you to train models of images classification, detection and generation.
To install the project, make sure you have Python 3.10 or later version
and pip installed on your machine. And then run the following command lines.
git clone git@github.com:mokira3d48/CVA_NET.git CVA_NET;
cd CVA_NET;
sudo rm -r .git;
git init; # To create a new instance of git repositoryAnd then,
sudo apt install cmake python3-venvInstall Cmake and Virtual env;python3 -m venv .venvcreate a virtual env into directory namedenv;source .venv/bin/activateactivate the virtual environment named.venv;make installinstall the requirements of this package;pip install -e .install the package in dev mode in virtual environment;make testrun the unit test scripts located attestsdirectory;
git clone git@github.com:mokira3d48/CVA_NET.git CVA_NETcd CVA_NETAnd then, delete the hidden directory named .git located at the root
of the directory project.
And then,
- Install python for windows;
- Open your command prompt;
- Run
python -m venv .venvto create a virtual env into directory named.venv; - Run
.venv\Scripts\activateto activate the virtual environment; - Run
pip install -r requirements.txtto install the requirements of this package or project; - Run
pip install -e .install the package in dev mode in virtual environment.pytestrun the unit test scripts located attestsdirectory;
- AlexNet
- Model Training;
- Model fine-tuning;
- VAE
- Model Training;
- Fine-tuning VAE encoder with 1-layer and 3-layers of Fully connected.
- YOLO
- Model Training;
To execute the unittest, make sure you have pytest package installed,
and then run the following command line:
make test or
pytestContributions are welcome! Please follow these steps:
- Create a new branch for your feature (
git checkout -b feature/my-feature); - Commit your changes (
git commit -m 'Adding a new feature'); - Push toward the branch (
git push origin feature/my-feature); - Create a new Pull Request or Merge Request.
This project is licensed under the MIT License. See the file LICENSE for more details, contact me please.
For your question or suggestion, contact me please:
- Name : Doctor Mokira
- Email : dr.mokira@gmail.com
- GitHub : mokira3d48