We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e760c25 commit 7615075Copy full SHA for 7615075
README.md
@@ -63,6 +63,17 @@ python train.py --dataset csv --csv_train <path/to/train_annots.csv> --csv_clas
63
64
Note that the --csv_val argument is optional, in which case no validation will be performed.
65
66
+## Pre-trained model
67
+
68
+A pre-trained model is available at: https://drive.google.com/open?id=1yLmjq3JtXi841yXWBxst0coAgR26MNBS
69
70
+This model can be loaded using:
71
72
+```
73
+retinanet = model.resnet50(num_classes=dataset_train.num_classes(),)
74
+retinanet.load_state_dict(torch.load(PATH_TO_WEIGHTS))
75
76
77
## Visualization
78
79
To visualize the network detection, use `visualize.py`:
0 commit comments