File size: 883 Bytes
d0ef04f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
model_stats = """
### YoloV3 Model Implementation & Training Details

Github Link: https://github.com/RaviNaik/ERA-SESSION13/tree/main

#### Achieved:
1. **Training Loss: 3.680** 
2. **Validation Loss: 4.940** 
3. **Class accuracy: 81.601883%** 
4. **No obj accuracy: 97.991463%** 
5. **Obj accuracy: 75.976616%**
6. **MAP: 0.4366795**

Model Link: 

"""

data_stats = """

### Pascal-Voc Dataset Details
Dataset Link: https://www.kaggle.com/datasets/aladdinpersson/pascal-voc-dataset-used-in-yolov3-video?resource=download
```python
Number of images: 43.2k
Dataset size: ~5GB
Classes Supported: [
    "aeroplane",
    "bicycle",
    "bird",
    "boat",
    "bottle",
    "bus",
    "car",
    "cat",
    "chair",
    "cow",
    "diningtable",
    "dog",
    "horse",
    "motorbike",
    "person",
    "pottedplant",
    "sheep",
    "sofa",
    "train",
    "tvmonitor",
]
```
"""