admin
commited on
Commit
·
70b7d54
1
Parent(s):
135e0df
Update README.md
Browse files
README.md
CHANGED
@@ -12,41 +12,31 @@ size_categories:
|
|
12 |
- n<1K
|
13 |
---
|
14 |
|
15 |
-
# Dataset Card for "
|
16 |
This repository consolidates the collection of backbone networks for pre-trained computer vision models available on the PyTorch official website. It mainly includes various Convolutional Neural Networks (CNNs) and Vision Transformer models pre-trained on the ImageNet1K dataset. The entire collection is divided into two subsets, V1 and V2, encompassing multiple classic and advanced versions of visual models. These pre-trained backbone networks provide users with a robust foundation for transfer learning in tasks such as image recognition, object detection, and image segmentation. Simultaneously, it offers a convenient choice for researchers and practitioners to flexibly apply these pre-trained models in different scenarios.
|
17 |
|
18 |
## Viewer
|
19 |
-
<https://huggingface.co/spaces/
|
20 |
### Data Fields
|
21 |
| ver | type | input_size | url |
|
22 |
| :-----------: | :-----------: | :--------------: | :-------------------------------: |
|
23 |
| backbone name | backbone type | input image size | url of pretrained model .pth file |
|
24 |
|
25 |
-
### Splits
|
26 |
-
| subsets |
|
27 |
-
| :--: |
|
28 |
-
| IMAGENET1K_V1 |
|
29 |
-
| IMAGENET1K_V2 |
|
30 |
-
|
31 |
## Maintenance
|
32 |
```bash
|
33 |
-
git clone [email protected]:datasets/
|
34 |
```
|
35 |
|
36 |
## Usage
|
37 |
```python
|
38 |
from datasets import load_dataset
|
39 |
|
40 |
-
backbones = load_dataset("
|
41 |
-
|
42 |
-
for weights in backbones["IMAGENET1K_V1"]:
|
43 |
-
print(weights)
|
44 |
-
|
45 |
-
for weights in backbones["IMAGENET1K_V2"]:
|
46 |
print(weights)
|
47 |
```
|
48 |
|
49 |
-
## Param
|
50 |
### IMAGENET1K_V1
|
51 |
| Backbone | Params(M) |
|
52 |
| :----------------: | :-------: |
|
|
|
12 |
- n<1K
|
13 |
---
|
14 |
|
15 |
+
# Dataset Card for "monetjoe/cv_backbones"
|
16 |
This repository consolidates the collection of backbone networks for pre-trained computer vision models available on the PyTorch official website. It mainly includes various Convolutional Neural Networks (CNNs) and Vision Transformer models pre-trained on the ImageNet1K dataset. The entire collection is divided into two subsets, V1 and V2, encompassing multiple classic and advanced versions of visual models. These pre-trained backbone networks provide users with a robust foundation for transfer learning in tasks such as image recognition, object detection, and image segmentation. Simultaneously, it offers a convenient choice for researchers and practitioners to flexibly apply these pre-trained models in different scenarios.
|
17 |
|
18 |
## Viewer
|
19 |
+
<https://huggingface.co/spaces/monetjoe/cv-backbones>
|
20 |
### Data Fields
|
21 |
| ver | type | input_size | url |
|
22 |
| :-----------: | :-----------: | :--------------: | :-------------------------------: |
|
23 |
| backbone name | backbone type | input image size | url of pretrained model .pth file |
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
## Maintenance
|
26 |
```bash
|
27 |
+
git clone [email protected]:datasets/monetjoe/cv_backbones
|
28 |
```
|
29 |
|
30 |
## Usage
|
31 |
```python
|
32 |
from datasets import load_dataset
|
33 |
|
34 |
+
backbones = load_dataset("monetjoe/cv_backbones", name="default", split="train")
|
35 |
+
for weights in backbones:
|
|
|
|
|
|
|
|
|
36 |
print(weights)
|
37 |
```
|
38 |
|
39 |
+
## Param counts of different backbones
|
40 |
### IMAGENET1K_V1
|
41 |
| Backbone | Params(M) |
|
42 |
| :----------------: | :-------: |
|