matthieulel
commited on
Commit
•
3f55af6
1
Parent(s):
2cfc383
Training in progress, epoch 0
Browse files- config.json +48 -0
- model.safetensors +3 -0
- preprocessor_config.json +22 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-large-patch16-224",
|
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": 1024,
|
11 |
+
"id2label": {
|
12 |
+
"0": "Disturbed Galaxies",
|
13 |
+
"1": "Merging Galaxies",
|
14 |
+
"2": "Round Smooth Galaxies",
|
15 |
+
"3": "In-between Round Smooth Galaxies",
|
16 |
+
"4": "Cigar Shaped Smooth Galaxies",
|
17 |
+
"5": "Barred Spiral Galaxies",
|
18 |
+
"6": "Unbarred Tight Spiral Galaxies",
|
19 |
+
"7": "Unbarred Loose Spiral Galaxies",
|
20 |
+
"8": "Edge-on Galaxies without Bulge",
|
21 |
+
"9": "Edge-on Galaxies with Bulge"
|
22 |
+
},
|
23 |
+
"image_size": 224,
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"intermediate_size": 4096,
|
26 |
+
"label2id": {
|
27 |
+
"Barred Spiral Galaxies": 5,
|
28 |
+
"Cigar Shaped Smooth Galaxies": 4,
|
29 |
+
"Disturbed Galaxies": 0,
|
30 |
+
"Edge-on Galaxies with Bulge": 9,
|
31 |
+
"Edge-on Galaxies without Bulge": 8,
|
32 |
+
"In-between Round Smooth Galaxies": 3,
|
33 |
+
"Merging Galaxies": 1,
|
34 |
+
"Round Smooth Galaxies": 2,
|
35 |
+
"Unbarred Loose Spiral Galaxies": 7,
|
36 |
+
"Unbarred Tight Spiral Galaxies": 6
|
37 |
+
},
|
38 |
+
"layer_norm_eps": 1e-12,
|
39 |
+
"model_type": "vit",
|
40 |
+
"num_attention_heads": 16,
|
41 |
+
"num_channels": 3,
|
42 |
+
"num_hidden_layers": 24,
|
43 |
+
"patch_size": 16,
|
44 |
+
"problem_type": "single_label_classification",
|
45 |
+
"qkv_bias": true,
|
46 |
+
"torch_dtype": "float32",
|
47 |
+
"transformers_version": "4.37.2"
|
48 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b6b6a818afc323c5ee6f1ac6ae67d42a29ae47ca2b9834f0a8c4b76811ba7500
|
3 |
+
size 1213294072
|
preprocessor_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_rescale": true,
|
4 |
+
"do_resize": true,
|
5 |
+
"image_mean": [
|
6 |
+
0.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_processor_type": "ViTImageProcessor",
|
11 |
+
"image_std": [
|
12 |
+
0.5,
|
13 |
+
0.5,
|
14 |
+
0.5
|
15 |
+
],
|
16 |
+
"resample": 2,
|
17 |
+
"rescale_factor": 0.00392156862745098,
|
18 |
+
"size": {
|
19 |
+
"height": 224,
|
20 |
+
"width": 224
|
21 |
+
}
|
22 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3d71229e0dffab7010784f9416e7e4575803a1720b8afffcbfaa84ba06cced75
|
3 |
+
size 4792
|