Views
No views yet
config.yaml) is required to use this model in CVAT. Download it: https://huggingface.co/LykaAustria/nicpras_finetuned_yolo/blob/main/config.yaml.transformers library as follows:1from transformers import pipeline
2
3# Load the model
4model = pipeline("object-detection", model="LykaAustria/nicpras_finetuned_yolo")
5
6# Run inference
7results = model("path_to_image.jpg")
8print(results)
9
10