Commit From AutoTrain
Browse files- .gitattributes +3 -0
- README.md +32 -0
- config.json +50 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
.gitattributes
CHANGED
|
@@ -32,3 +32,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*.bin.* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- autotrain
|
| 4 |
+
- vision
|
| 5 |
+
- image-classification
|
| 6 |
+
datasets:
|
| 7 |
+
- puffy310/autotrain-data-synth-cats-or-dogs
|
| 8 |
+
widget:
|
| 9 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/tiger.jpg
|
| 10 |
+
example_title: Tiger
|
| 11 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/teapot.jpg
|
| 12 |
+
example_title: Teapot
|
| 13 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/palace.jpg
|
| 14 |
+
example_title: Palace
|
| 15 |
+
co2_eq_emissions:
|
| 16 |
+
emissions: 1.165641024416945
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Model Trained Using AutoTrain
|
| 20 |
+
|
| 21 |
+
- Problem type: Binary Classification
|
| 22 |
+
- Model ID: 2540477801
|
| 23 |
+
- CO2 Emissions (in grams): 1.1656
|
| 24 |
+
|
| 25 |
+
## Validation Metrics
|
| 26 |
+
|
| 27 |
+
- Loss: 0.000
|
| 28 |
+
- Accuracy: 1.000
|
| 29 |
+
- Precision: 1.000
|
| 30 |
+
- Recall: 1.000
|
| 31 |
+
- AUC: 1.000
|
| 32 |
+
- F1: 1.000
|
config.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "AutoTrain",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"SwinForImageClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.0,
|
| 7 |
+
"depths": [
|
| 8 |
+
2,
|
| 9 |
+
2,
|
| 10 |
+
18,
|
| 11 |
+
2
|
| 12 |
+
],
|
| 13 |
+
"drop_path_rate": 0.1,
|
| 14 |
+
"embed_dim": 128,
|
| 15 |
+
"encoder_stride": 32,
|
| 16 |
+
"hidden_act": "gelu",
|
| 17 |
+
"hidden_dropout_prob": 0.0,
|
| 18 |
+
"hidden_size": 1024,
|
| 19 |
+
"id2label": {
|
| 20 |
+
"0": "Cat",
|
| 21 |
+
"1": "Dog"
|
| 22 |
+
},
|
| 23 |
+
"image_size": 224,
|
| 24 |
+
"initializer_range": 0.02,
|
| 25 |
+
"label2id": {
|
| 26 |
+
"Cat": "0",
|
| 27 |
+
"Dog": "1"
|
| 28 |
+
},
|
| 29 |
+
"layer_norm_eps": 1e-05,
|
| 30 |
+
"max_length": 128,
|
| 31 |
+
"mlp_ratio": 4.0,
|
| 32 |
+
"model_type": "swin",
|
| 33 |
+
"num_channels": 3,
|
| 34 |
+
"num_heads": [
|
| 35 |
+
4,
|
| 36 |
+
8,
|
| 37 |
+
16,
|
| 38 |
+
32
|
| 39 |
+
],
|
| 40 |
+
"num_layers": 4,
|
| 41 |
+
"padding": "max_length",
|
| 42 |
+
"patch_size": 4,
|
| 43 |
+
"path_norm": true,
|
| 44 |
+
"problem_type": "single_label_classification",
|
| 45 |
+
"qkv_bias": true,
|
| 46 |
+
"torch_dtype": "float32",
|
| 47 |
+
"transformers_version": "4.22.1",
|
| 48 |
+
"use_absolute_embeddings": false,
|
| 49 |
+
"window_size": 7
|
| 50 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_resize": true,
|
| 4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
| 5 |
+
"image_mean": [
|
| 6 |
+
0.485,
|
| 7 |
+
0.456,
|
| 8 |
+
0.406
|
| 9 |
+
],
|
| 10 |
+
"image_std": [
|
| 11 |
+
0.229,
|
| 12 |
+
0.224,
|
| 13 |
+
0.225
|
| 14 |
+
],
|
| 15 |
+
"resample": 3,
|
| 16 |
+
"size": 224
|
| 17 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31a05358dffe7951406e9168ce96d6373bdb375684794ccec33120532a1c66b6
|
| 3 |
+
size 347599761
|