Spaces:
Sleeping
Sleeping
Commit
Β·
03ad78b
0
Parent(s):
first commit
Browse files- .gitattributes +2 -0
- Readme.md +30 -0
.gitattributes
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
2 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
Readme.md
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Forest Surveillance System
|
2 |
+
|
3 |
+
## Directory Sturcture
|
4 |
+
```
|
5 |
+
Nature-Nexus/
|
6 |
+
βββ app.py # Main Streamlit application
|
7 |
+
βββ prediction_engine.py # Unified prediction engine
|
8 |
+
βββ models/ # Model files
|
9 |
+
β βββ deforestation_model.onnx
|
10 |
+
β βββ fire_detection_model.onnx
|
11 |
+
β βββ audio_model.pth
|
12 |
+
βββ utils/
|
13 |
+
β βββ model.py # Common model architectures
|
14 |
+
β βββ process_img.py # Image processing utilities
|
15 |
+
β βββ process_video.py # Video processing utilities
|
16 |
+
β βββ process_audio.py # Audio processing utilities
|
17 |
+
β βββ onnx_converter.py # ONNX conversion utility
|
18 |
+
β βββ deforested_segmentor/ # Deforestation-specific utilities
|
19 |
+
β β βββ __init__.py
|
20 |
+
β β βββ model.py # Deforestation model loader
|
21 |
+
β β βββ predict.py # Deforestation prediction functions
|
22 |
+
β βββ fire_detection/ # Fire detection-specific utilities
|
23 |
+
β β βββ __init__.py
|
24 |
+
β β βββ model.py # Fire detection model loader
|
25 |
+
β β βββ predict.py # Fire detection prediction functions
|
26 |
+
β βββ audio_processing/ # Audio processing-specific utilities
|
27 |
+
β βββ __init__.py
|
28 |
+
β βββ model.py # Audio model loader
|
29 |
+
β βββ predict.py # Audio prediction functions
|
30 |
+
```
|