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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ I'm fortunate to be able to dedicate significant time and money of my own suppor
39
39
* Add CoaT models and weights. Thanks [Mohammed Rizin](https://github.com/morizin)
40
40
* Add new ImageNet-21k weights & finetuned weights for TResNet, MobileNet-V3, ViT models. Thanks [mrT](https://github.com/mrT23)
41
41
* Add GhostNet models and weights. Thanks [Kai Han](https://github.com/iamhankai)
42
-
* Update ByoaNet attention modles
42
+
* Update ByoaNet attention modules
43
43
* Improve SA module inits
44
44
* Hack together experimental stand-alone Swin based attn module and `swinnet`
45
45
* Consistent '26t' model defs for experiments.
@@ -282,7 +282,7 @@ Several (less common) features that I often utilize in my projects are included.
282
282
* PyTorch DistributedDataParallel w/ multi-gpu, single process (AMP disabled as it crashes when enabled)
283
283
* PyTorch w/ single GPU single process (AMP optional)
284
284
* A dynamic global pool implementation that allows selecting from average pooling, max pooling, average + max, or concat([average, max]) at model creation. All global pooling is adaptive average by default and compatible with pretrained weights.
285
-
* A 'Test Time Pool' wrapper that can wrap any of the included models and usually provide improved performance doing inference with input images larger than the training size. Idea adapted from original DPN implementation when I ported (https://github.com/cypw/DPNs)
285
+
* A 'Test Time Pool' wrapper that can wrap any of the included models and usually provides improved performance doing inference with input images larger than the training size. Idea adapted from original DPN implementation when I ported (https://github.com/cypw/DPNs)
@@ -329,7 +329,7 @@ The root folder of the repository contains reference train, validation, and infe
329
329
330
330
## Awesome PyTorch Resources
331
331
332
-
One of the greatest assets of PyTorch is the community and their contributions. A few of my favourite resources that pair well with the models and componenets here are listed below.
332
+
One of the greatest assets of PyTorch is the community and their contributions. A few of my favourite resources that pair well with the models and components here are listed below.
333
333
334
334
### Object Detection, Instance and Semantic Segmentation
@@ -353,7 +353,7 @@ One of the greatest assets of PyTorch is the community and their contributions.
353
353
## Licenses
354
354
355
355
### Code
356
-
The code here is licensed Apache 2.0. I've taken care to make sure any third party code included or adapted has compatible (permissive) licenses such as MIT, BSD, etc. I've made an effort to avoid any GPL / LGPL conflicts. That said, it is your responsibility to ensure you comply with license here and conditions of any dependent licenses. Where applicable, I've linked the sources/references for various components in docstrings. If you think I've missed anything please create an issue.
356
+
The code here is licensed Apache 2.0. I've taken care to make sure any third party code included or adapted has compatible (permissive) licenses such as MIT, BSD, etc. I've made an effort to avoid any GPL / LGPL conflicts. That said, it is your responsibility to ensure you comply with licenses here and conditions of any dependent licenses. Where applicable, I've linked the sources/references for various components in docstrings. If you think I've missed anything please create an issue.
357
357
358
358
### Pretrained Weights
359
359
So far all of the pretrained weights available here are pretrained on ImageNet with a select few that have some additional pretraining (see extra note below). ImageNet was released for non-commercial research purposes only (http://www.image-net.org/download-faq). It's not clear what the implications of that are for the use of pretrained weights from that dataset. Any models I have trained with ImageNet are done for research purposes and one should assume that the original dataset license applies to the weights. It's best to seek legal advice if you intend to use the pretrained weights in a commercial product.
0 commit comments