Initial Commit

This commit is contained in:
Nabil Ould Hamou 2024-12-19 12:24:52 +01:00
parent c6a8c370ed
commit 8a12f4d73f
4 changed files with 36 additions and 2 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.venv/

View file

@ -1,2 +1,34 @@
# SignsDetectionAI
AI project for my classes
<h1 align="center">Signs Detection AI</h1>
AI project for the Introduction to AI course at Université de Tours for the ISA Masters.
## Requirements
- Python 3.12
## Installation
Start by creating a virtual environment (Optional)
```bash
python3 -m venv .venv
source .venv/bin/activate
```
Install the dependencies
```bash
pip install -r pip-dependencies.txt
```
## Running the project
Run the project
```bash
python main.py
```
## Testing
## Documentation
## Authors
- Nabil Ould Hamou - [@NabilOuldHamou](https://github.com/NabilOuldHamou)
- Yanis Bouarfa - [@Yanax373](https://github.com/Yanax373)

0
main.py Normal file
View file

1
pip-dependencies.txt Normal file
View file

@ -0,0 +1 @@
opencv-python pytorch tensorflow numpy pandas matplotlib