Piotr Krawiec commited on
Commit
0f19159
1 Parent(s): 072917c

Add how to use and results

Browse files
Files changed (1) hide show
  1. README.md +13 -2
README.md CHANGED
@@ -20,8 +20,19 @@ YOLOv8s trained on solar panels dataset https://app.roboflow.com/rzeszow-univers
20
 
21
  ## Training results
22
 
 
 
 
 
 
 
 
 
23
  ## How to use
24
 
25
  1. Instal ultralytics package. Follow their guide here: [Quickstart](https://docs.ultralytics.com/quickstart/)
26
- 2. Download model
27
- 3. Run model
 
 
 
 
20
 
21
  ## Training results
22
 
23
+ ![Results](train/results.png)
24
+
25
+ *Labels:*
26
+ ![Labels](train/val_batch0_labels.jpg)
27
+
28
+ *Predictions:*
29
+ ![Preds](train/val_batch0_pred.jpg)
30
+
31
  ## How to use
32
 
33
  1. Instal ultralytics package. Follow their guide here: [Quickstart](https://docs.ultralytics.com/quickstart/)
34
+ 2. Clone this repository.
35
+ 3. Run inference
36
+ ```sh
37
+ yolo segment predict model=best.pt imgsz=640 save=True source=image.png
38
+ ```