Akriel commited on
Commit
9c1d4ce
1 Parent(s): 2d03825

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -11,3 +11,27 @@ Link to the repository: https://github.com/Akrielz/vision_models_playground
11
  ## **Model**
12
  This model is a custom implementation of **ResNetYoloV1** from the ```vision_models_playground.models.segmentation.yolo_v1``` module.
13
  Please look in the config file for more information about the model architecture.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ## **Model**
12
  This model is a custom implementation of **ResNetYoloV1** from the ```vision_models_playground.models.segmentation.yolo_v1``` module.
13
  Please look in the config file for more information about the model architecture.
14
+
15
+ ## **Metrics**
16
+
17
+ The model was evaluated on the following on the **YoloPascalVocDataset** from ```vision_models_playground.datasets.yolo_pascal_voc_dataset```
18
+
19
+ These are the results of the evaluation:
20
+ - MulticlassAccuracy: 0.7241
21
+ - MulticlassAveragePrecision: 0.7643
22
+ - MulticlassAUROC: 0.9684
23
+ - Dice: 0.7241
24
+ - MulticlassF1Score: 0.7241
25
+ - LossTracker: 4.1958
26
+
27
+
28
+ ## **Additional Information**
29
+ The train and evaluation runs are also saved using tensorboard. You can use the following command to visualize the runs:
30
+
31
+ ```bash
32
+ tensorboard --logdir ./model
33
+ ```
34
+
35
+ ```bash
36
+ tensorboard --logdir ./eval
37
+ ```
eval/events.out.tfevents.1688850071.Sputnik.3440727.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:302bacc363b2c5572dc6c9f41cb7e5c7b2b18d199712143b699cf02e9c18cef6
3
+ size 36110
eval/report.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## **Metrics**
2
+
3
+ The model was evaluated on the following on the **YoloPascalVocDataset** from ```vision_models_playground.datasets.yolo_pascal_voc_dataset```
4
+
5
+ These are the results of the evaluation:
6
+ - MulticlassAccuracy: 0.7241
7
+ - MulticlassAveragePrecision: 0.7643
8
+ - MulticlassAUROC: 0.9684
9
+ - Dice: 0.7241
10
+ - MulticlassF1Score: 0.7241
11
+ - LossTracker: 4.1958