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: docs/changes.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
# Recent Changes
2
2
3
-
### Aug 1, 2020
3
+
### Aug 5, 2020
4
4
Universal feature extraction, new models, new weights, new test sets.
5
+
5
6
* All models support the `features_only=True` argument for `create_model` call to return a network that extracts features from the deepest layer at each stride.
6
7
* New models
7
8
* CSPResNet, CSPResNeXt, CSPDarkNet, DarkNet
@@ -14,6 +15,8 @@ Universal feature extraction, new models, new weights, new test sets.
14
15
* DPN68b - 79.2 top-1
15
16
* EfficientNet-Lite0 (non-TF ver) - 75.5 (submitted by @hal-314)
16
17
* Add 'real' labels for ImageNet and ImageNet-Renditions test set, see [`results/README.md`](results/README.md)
18
+
* Train script and loader/transform tweaks to punch through more aug arguments
19
+
* README and documentation overhaul. See initial (WIP) documentation at https://rwightman.github.io/pytorch-image-models/
Copy file name to clipboardExpand all lines: docs/models.md
+28-24Lines changed: 28 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
The model architectures included come from a wide variety of sources. Sources, including papers, original impl ("reference code") that I rewrote / adapted, and PyTorch impl that I leveraged directly ("code") are listed below.
4
4
5
5
Most included models have pretrained weights. The weights are either:
6
+
6
7
1. from their original sources
7
8
2. ported by myself from their original impl in a different framework (e.g. Tensorflow models)
8
9
3. trained from scratch using the included training script
@@ -55,16 +56,17 @@ The validation results for the pretrained weights can be found [here](results.md
0 commit comments