Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -12,6 +12,16 @@ Link to the repository: https://github.com/Akrielz/vision_models_playground
|
|
| 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 dataset: **YoloPascalVocDataset** from ```vision_models_playground.datasets.yolo_pascal_voc_dataset```
|
|
|
|
| 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 |
+
## **Usage**
|
| 16 |
+
To load the model, you can use the following code snippet:
|
| 17 |
+
|
| 18 |
+
```python
|
| 19 |
+
from vision_models_playground.utility.hub import load_vmp_model_from_hub
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
model = load_vmp_model_from_hub(Akriel/ResNetYoloV1)
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
## **Metrics**
|
| 26 |
|
| 27 |
The model was evaluated on the following dataset: **YoloPascalVocDataset** from ```vision_models_playground.datasets.yolo_pascal_voc_dataset```
|