-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathstructure.txt
More file actions
50 lines (48 loc) · 1.35 KB
/
structure.txt
File metadata and controls
50 lines (48 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.
├── ai-models
│ ├── congestion_heatmap.py
│ ├── fare_estimation.py
│ ├── wardha_passenger_view.py
│ └── passenger_flow_model.py
│
├── api_models
│ └── train_model.ipynb
├── backend
│ ├── app.py
│ ├── main.py
│ ├── models
│ │ ├── __init__.py
│ │ └── models.py
│ ├── requirements.txt
│ ├── routers
│ │ ├── __init__.py
│ │ ├── passenger_flow.py
│ │ └── stations.py
│ └── services
│ ├── __init__.py
│ └── metro_service.py
├── code_of_conduct.md
├── Contributing.md
├── Contributors.md
├── database
│ └── wardha.db
├── frontend
│ ├── scripts
│ │ ├── about.js
│ │ ├── admin-script.js
│ │ └── passenger.js
│ ├── styles
│ │ ├── about.css
│ │ ├── admin-script.css
│ │ └── passenger.css
│ ├── about.html
│ ├── Admin.html
│ └── passenger.html
├── LICENSE
├── README.md
├── requirements.txt
├── static
│ └── Architecture.png
├── structure.txt
└── vercel.json
10 directories, 29 files