Initial Commit
This commit is contained in:
parent
c6a8c370ed
commit
8a12f4d73f
4 changed files with 36 additions and 2 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.venv/
|
36
README.md
36
README.md
|
@ -1,2 +1,34 @@
|
||||||
# SignsDetectionAI
|
<h1 align="center">Signs Detection AI</h1>
|
||||||
AI project for my classes
|
|
||||||
|
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
0
main.py
Normal file
1
pip-dependencies.txt
Normal file
1
pip-dependencies.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
opencv-python pytorch tensorflow numpy pandas matplotlib
|
Loading…
Add table
Reference in a new issue