chaitanyaroy commited on
Commit
09474cc
·
1 Parent(s): 989a759

commit files to HF hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ images/Mount_Everest.jpg filter=lfs diff=lfs merge=lfs -text
37
+ images/Mount_Fuji.jpg filter=lfs diff=lfs merge=lfs -text
38
+ images/Nanga_Parbat.jpg filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - image-classification
4
+ - pytorch
5
+ - huggingpics
6
+ metrics:
7
+ - accuracy
8
+
9
+ model-index:
10
+ - name: mountains-segregator
11
+ results:
12
+ - task:
13
+ name: Image Classification
14
+ type: image-classification
15
+ metrics:
16
+ - name: Accuracy
17
+ type: accuracy
18
+ value: 0.8958333134651184
19
+ ---
20
+
21
+ # mountains-segregator
22
+
23
+
24
+ Autogenerated by HuggingPics🤗🖼️
25
+
26
+ Create your own image classifier for **anything** by running [the demo on Google Colab](https://colab.research.google.com/github/nateraw/huggingpics/blob/main/HuggingPics.ipynb).
27
+
28
+ Report any issues with the demo at the [github repo](https://github.com/nateraw/huggingpics).
29
+
30
+
31
+ ## Example Images
32
+
33
+
34
+ #### Mount Everest
35
+
36
+ ![Mount Everest](images/Mount_Everest.jpg)
37
+
38
+ #### Mount Fuji
39
+
40
+ ![Mount Fuji](images/Mount_Fuji.jpg)
41
+
42
+ #### Nanga Parbat
43
+
44
+ ![Nanga Parbat](images/Nanga_Parbat.jpg)
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google/vit-base-patch16-224-in21k",
3
+ "architectures": [
4
+ "ViTForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "encoder_stride": 16,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.0,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "Mount Everest",
13
+ "1": "Mount Fuji",
14
+ "2": "Nanga Parbat"
15
+ },
16
+ "image_size": 224,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 3072,
19
+ "label2id": {
20
+ "Mount Everest": "0",
21
+ "Mount Fuji": "1",
22
+ "Nanga Parbat": "2"
23
+ },
24
+ "layer_norm_eps": 1e-12,
25
+ "model_type": "vit",
26
+ "num_attention_heads": 12,
27
+ "num_channels": 3,
28
+ "num_hidden_layers": 12,
29
+ "patch_size": 16,
30
+ "problem_type": "single_label_classification",
31
+ "qkv_bias": true,
32
+ "torch_dtype": "float32",
33
+ "transformers_version": "4.48.3"
34
+ }
images/Mount_Everest.jpg ADDED

Git LFS Details

  • SHA256: 8b665500cfa636a2febca0170044fcfb56f80d1e107c09e241e8c3aaa63ad523
  • Pointer size: 130 Bytes
  • Size of remote file: 15.8 kB
images/Mount_Fuji.jpg ADDED

Git LFS Details

  • SHA256: d5348030b67b70386e76c1c12e6804aa207e4742b3c4ce7b73e1a555e42da706
  • Pointer size: 130 Bytes
  • Size of remote file: 13.6 kB
images/Nanga_Parbat.jpg ADDED

Git LFS Details

  • SHA256: c4ec8b3a74c49bb8b096c16dea3f6359e72ef8175b5fd449608b5573897d0717
  • Pointer size: 130 Bytes
  • Size of remote file: 19.4 kB
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd565c711a3d7717f1f30636a113ff5d3c8cfa58ead5119d4b92dd5ded1cc251
3
+ size 343227052
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_convert_rgb": null,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "image_mean": [
7
+ 0.5,
8
+ 0.5,
9
+ 0.5
10
+ ],
11
+ "image_processor_type": "ViTFeatureExtractor",
12
+ "image_std": [
13
+ 0.5,
14
+ 0.5,
15
+ 0.5
16
+ ],
17
+ "resample": 2,
18
+ "rescale_factor": 0.00392156862745098,
19
+ "size": {
20
+ "height": 224,
21
+ "width": 224
22
+ }
23
+ }
runs/events.out.tfevents.1740136746.60c231961f4c.11242.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c90faa5379eb6b68461a47d88319753c300570da9b9b74fb35098d784c7f034
3
+ size 1114