ninafr8175 commited on
Commit ·
35d4442
1
Parent(s): 2e0d90d
update dashboard 7
Browse files
.gitattributes
CHANGED
|
@@ -1,24 +1,20 @@
|
|
| 1 |
-
|
| 2 |
* text=auto
|
| 3 |
|
| 4 |
*.py text eol=lf
|
| 5 |
-
*.ipynb -diff
|
| 6 |
*.sh text eol=lf
|
| 7 |
-
Dockerfile
|
| 8 |
*.yml text eol=lf
|
| 9 |
*.yaml text eol=lf
|
| 10 |
|
| 11 |
*.ps1 text eol=crlf
|
| 12 |
*.bat text eol=crlf
|
| 13 |
-
|
| 14 |
-
*.
|
| 15 |
-
*.tsv text eol=lf working-tree-encoding=UTF-8
|
| 16 |
-
|
| 17 |
*.png binary
|
| 18 |
*.jpg binary
|
| 19 |
*.jpeg binary
|
| 20 |
*.pdf binary
|
| 21 |
-
|
| 22 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 23 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 24 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
| 1 |
* text=auto
|
| 2 |
|
| 3 |
*.py text eol=lf
|
| 4 |
+
*.ipynb text eol=lf -diff
|
| 5 |
*.sh text eol=lf
|
| 6 |
+
Dockerfile text eol=lf
|
| 7 |
*.yml text eol=lf
|
| 8 |
*.yaml text eol=lf
|
| 9 |
|
| 10 |
*.ps1 text eol=crlf
|
| 11 |
*.bat text eol=crlf
|
| 12 |
+
*.csv text eol=lf
|
| 13 |
+
*.tsv text eol=lf
|
|
|
|
|
|
|
| 14 |
*.png binary
|
| 15 |
*.jpg binary
|
| 16 |
*.jpeg binary
|
| 17 |
*.pdf binary
|
|
|
|
| 18 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 19 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 20 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
.gitignore
CHANGED
|
@@ -1,18 +1,59 @@
|
|
| 1 |
-
#
|
| 2 |
.venv/
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
-
#
|
| 5 |
-
.env
|
| 6 |
-
|
| 7 |
-
# Fichiers générés automatiquement
|
| 8 |
__pycache__/
|
| 9 |
*.pyc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
app_v0.py
|
| 14 |
-
app_v1.py
|
| 15 |
-
inference_v0.py
|
| 16 |
-
inference_v1.py
|
| 17 |
-
Dockerfile
|
| 18 |
-
Notes.txt
|
|
|
|
| 1 |
+
# ========== ENVIRONNEMENTS ==========
|
| 2 |
.venv/
|
| 3 |
+
env/
|
| 4 |
+
venv/
|
| 5 |
+
ENV/
|
| 6 |
|
| 7 |
+
# ========== CACHE PYTHON ==========
|
|
|
|
|
|
|
|
|
|
| 8 |
__pycache__/
|
| 9 |
*.pyc
|
| 10 |
+
*.pyo
|
| 11 |
+
|
| 12 |
+
# ========== FICHIERS PERSONNELS ==========
|
| 13 |
+
Autres/
|
| 14 |
+
|
| 15 |
+
# ========== NOTEBOOKS ==========
|
| 16 |
+
# Garde les notebooks .ipynb si tu veux, mais ignore leurs checkpoints
|
| 17 |
+
.ipynb_checkpoints/
|
| 18 |
+
|
| 19 |
+
# ========== MODELES ==========
|
| 20 |
+
# Ignore tous les modèles par défaut...
|
| 21 |
+
# Sauf ceux que TU veux explicitement inclure.
|
| 22 |
+
# *.pt
|
| 23 |
+
# !efficientnet_fire.pt
|
| 24 |
+
# !efficientnet_fire_2.pt
|
| 25 |
+
# !efficientnet_fire_3.pt
|
| 26 |
+
# !yolov8_fire.pt
|
| 27 |
+
|
| 28 |
+
# ========== LOGS ==========
|
| 29 |
+
*.log
|
| 30 |
+
|
| 31 |
+
# ========== SYSTEM FILES ==========
|
| 32 |
+
.DS_Store
|
| 33 |
+
Thumbs.db
|
| 34 |
+
|
| 35 |
+
# ========== EDITOR CONFIG ==========
|
| 36 |
+
.vscode/
|
| 37 |
+
.idea/
|
| 38 |
+
|
| 39 |
+
# ========== HUGGINGFACE ==========
|
| 40 |
+
# Si jamais un cache HF local apparaît :
|
| 41 |
+
huggingface/
|
| 42 |
+
|
| 43 |
+
# ========== AUTRES FICHIERS TEMPORAIRES ==========
|
| 44 |
+
*.tmp
|
| 45 |
+
*.temp
|
| 46 |
+
*.bak
|
| 47 |
+
|
| 48 |
+
# ========== DONNEES SENSIBLES POTENTIELLES ==========
|
| 49 |
+
*.csv
|
| 50 |
+
*.json
|
| 51 |
+
*.xlsx
|
| 52 |
+
*.pkl
|
| 53 |
+
*.pickle
|
| 54 |
+
*.h5
|
| 55 |
+
data/
|
| 56 |
+
datasets/
|
| 57 |
|
| 58 |
+
# Ignorer docker-build temporaires
|
| 59 |
+
*~
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dockerfile
DELETED
|
@@ -1,18 +0,0 @@
|
|
| 1 |
-
FROM python:3.13-slim
|
| 2 |
-
|
| 3 |
-
WORKDIR /app
|
| 4 |
-
|
| 5 |
-
ENV PYTHONDONTWRITEBYTECODE=1
|
| 6 |
-
ENV PYTHONUNBUFFERED=1
|
| 7 |
-
|
| 8 |
-
RUN apt-get update && apt-get install -y --no-install-recommends \
|
| 9 |
-
&& rm -rf /var/lib/apt/lists/*
|
| 10 |
-
|
| 11 |
-
COPY requirements.txt ./requirements.txt
|
| 12 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 13 |
-
|
| 14 |
-
COPY . .
|
| 15 |
-
|
| 16 |
-
EXPOSE 7860
|
| 17 |
-
|
| 18 |
-
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fire_detection_Project.ipynb → Fire_detection_Project_Baseline.ipynb
RENAMED
|
File without changes
|
Nina_Fire_detection_Project_v2.ipynb → Fire_detection_Project_v2.ipynb
RENAMED
|
File without changes
|
yolov8_fire.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b24f8328e6323f013a54be37002a9b28c7766895308076bd4b1baf6be1eea65e
|
| 3 |
+
size 22532714
|