You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,21 @@ This repository is an implementation of Nodes that interact with the Zauberzeug
7
7
8
8
This node is used to train Yolov5 Models in the Learning Loop. It is based on [this image](https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel-23-07.html) running Python 3.10.
9
9
10
+
## Hyperparameters
11
+
12
+
We support all native hyperparameters of YOLOv5 (cf. `hyp_det.yaml` / `hyp_cla.yaml` for reference).
13
+
In addition, we support the following hyperparameters:
14
+
15
+
-`epochs`: The number of epochs to train the model.
16
+
-`detect_nms_conf_thres`: The confidence threshold for the NMS during inference and validation (not relevant for training).
17
+
-`detect_nms_iou_thres`: The IoU threshold for the NMS during inference and validation (not used for training).
18
+
19
+
Further, we support the following hyperparameters for point detection:
20
+
21
+
-`reset_points`: Whether to reset the size of the points after data augmentation.
22
+
-`point_sizes_by_id`: A dictionary that maps from point category uuids to the size of the points in the output (fractional size 0-1).
23
+
-`flip_label_pairs`: A list of pairs of point uuids that should be swapped when a horizontal flip is applied during data augmentation.
24
+
10
25
## Images
11
26
12
27
Trainer Docker-Images are published on https://hub.docker.com/r/zauberzeug/yolov5-trainer
0 commit comments