Object Detection
ultralytics
ONNX
English
chart
charts
fintwit
stocks
crypto
finance
financial
financial charts
graphs
financial graphs
plot
plots
financial plots
cryptocurrency
Eval Results (legacy)
Instructions to use StephanAkkerman/chart-info-detector with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use StephanAkkerman/chart-info-detector with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("StephanAkkerman/chart-info-detector") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -72,7 +72,7 @@ model = YOLO(hf_hub_download(
|
|
| 72 |
# Perform object detection on an image
|
| 73 |
results = model.predict(
|
| 74 |
source=img_path,
|
| 75 |
-
imgsz=
|
| 76 |
conf=0.25,
|
| 77 |
iou=0.5,
|
| 78 |
verbose=False,
|
|
|
|
| 72 |
# Perform object detection on an image
|
| 73 |
results = model.predict(
|
| 74 |
source=img_path,
|
| 75 |
+
imgsz=1792,
|
| 76 |
conf=0.25,
|
| 77 |
iou=0.5,
|
| 78 |
verbose=False,
|