Table of Contents
This repository is the base for the final project of Neural Networks and Computer Vision subjects in AI Master´s at UDIT.
In order to make use of the library, one should just follow the next steps:
- Clone the project:
git clone <repo-url>- Create a virtual environment en la carpeta del repositorio:
python -m venv .venv
- Click on a python file (.py) and check below that the virtual environment is enabled, otherwise run the following command (windows only) :
.\.venv\Scripts\Activate.ps1
- Once the environment has been activated, install the library with dependencies, preferably in a Python virtual environment (except for deployment):
pip install -r requirements.txt
Extra commands:
- To check cuda version and graphics card:
nvidia-smi
When coding, just try to follow the PEP8 style and PEP257 numpy/sphinx notation for docstrings. Any code optimisations are greatly appreciated.
Any contributions are greatly appreciated. If you have suggestions that would make the project any better, don't hesitate to contribute. Here is a reminder of the steps:
- Clone the repository:
git clone <repo-url>- Create your branch:
git checkout -b branchname- Implement and test your features.
- Add changes:
git add <files-to-add>- Commit your changes:
git commit -m "<feature-description>"- Push to the branch:
git push origin branchname- Request a merge when you are ready.
This very project woulnd't have been possible without:
- UDIT AI Master´s group 1 class
Enjoy the content! 😄
