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
Feature/1124 Added Pytorch Lightning Test support for all models (airctic#1125)
* feature/1124 Added Pytorch Lightning Test support for mmdet
* feature/1124 Added Pytorch Lightning Test support for efficientdet
* feature/1124 Added Pytorch Lightning Test support for torchvision
* feature/1124 Added Pytorch Lightning Test support for yolov5
* feature/1124 Renamed shared evaluation method for mmdet
* feature/1124 Renamed shared evaluation method for efficientdet
* feature/1124 Renamed shared evaluation method for torchvision
* feature/1124 Renamed shared evaluation method for yolov5
* feature/1124 Added test for PL test step of efficientdet
* feature/1124 Added test for PL test step of mmdet
* feature/1124 Added test for PL test step of torchvision models
* feature/1124 Added test for PL test step of yolov5
* feature/1124 Updated object detection getting started guide to add PL test
* feature/1124 Updated environment.yml to fix icevision version not found
* feature/1124 Added unit tests for efficientdet lightning model adapter
* feature/1124 Added unit tests for mmdet lightning model adapter
* feature/1124 Added unit tests for torchvision lightning model adapter
* feature/1124 Added unit tests for yolov5 lightning model adapter
* feature/1124 Added unit tests for fastai unet lightning model adapter
* feature/1124 Fixed memory consumption in PL tests
Copy file name to clipboardexpand all lines: notebooks/getting_started_object_detection.ipynb
+21-3
Original file line number
Diff line number
Diff line change
@@ -802,6 +802,24 @@
802
802
"trainer.fit(light_model, train_dl, valid_dl)"
803
803
]
804
804
},
805
+
{
806
+
"cell_type": "markdown",
807
+
"metadata": {},
808
+
"source": [
809
+
"#### Testing using Pytorch Lightning\n",
810
+
"For testing, it is recommended to use a separate test dataset that the model did not see during training but for demonstration purposes we'll re-use the validation dataset."
0 commit comments