Isobutylcyclopentane
commited on
Commit
·
fec3429
1
Parent(s):
d2e201b
Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +67 -0
- preprocessor_config.json +19 -0
- pytorch_model.bin +3 -0
- runs/Apr26_05-51-09_96a65ca7abb9/1650952295.0433466/events.out.tfevents.1650952295.96a65ca7abb9.73.1 +3 -0
- runs/Apr26_05-51-09_96a65ca7abb9/events.out.tfevents.1650952295.96a65ca7abb9.73.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "deepmind/vision-perceiver-learned",
|
3 |
+
"architectures": [
|
4 |
+
"PerceiverForImageClassificationLearned"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"audio_samples_per_frame": 1920,
|
8 |
+
"cross_attention_shape_for_attention": "kv",
|
9 |
+
"cross_attention_widening_factor": 1,
|
10 |
+
"d_latents": 32,
|
11 |
+
"d_model": 256,
|
12 |
+
"hidden_act": "gelu",
|
13 |
+
"id2label": {
|
14 |
+
"0": "AnnualCrop",
|
15 |
+
"1": "Forest",
|
16 |
+
"2": "HerbaceousVegetation",
|
17 |
+
"3": "Highway",
|
18 |
+
"4": "Industrial",
|
19 |
+
"5": "Pasture",
|
20 |
+
"6": "PermanentCrop",
|
21 |
+
"7": "Residential",
|
22 |
+
"8": "River",
|
23 |
+
"9": "SeaLake"
|
24 |
+
},
|
25 |
+
"image_size": 224,
|
26 |
+
"initializer_range": 0.02,
|
27 |
+
"label2id": {
|
28 |
+
"AnnualCrop": 0,
|
29 |
+
"Forest": 1,
|
30 |
+
"HerbaceousVegetation": 2,
|
31 |
+
"Highway": 3,
|
32 |
+
"Industrial": 4,
|
33 |
+
"Pasture": 5,
|
34 |
+
"PermanentCrop": 6,
|
35 |
+
"Residential": 7,
|
36 |
+
"River": 8,
|
37 |
+
"SeaLake": 9
|
38 |
+
},
|
39 |
+
"layer_norm_eps": 1e-12,
|
40 |
+
"max_position_embeddings": 2048,
|
41 |
+
"model_type": "perceiver",
|
42 |
+
"num_blocks": 8,
|
43 |
+
"num_cross_attention_heads": 1,
|
44 |
+
"num_frames": 16,
|
45 |
+
"num_latents": 128,
|
46 |
+
"num_self_attends_per_block": 4,
|
47 |
+
"num_self_attention_heads": 8,
|
48 |
+
"output_shape": [
|
49 |
+
1,
|
50 |
+
16,
|
51 |
+
224,
|
52 |
+
224
|
53 |
+
],
|
54 |
+
"problem_type": "single_label_classification",
|
55 |
+
"qk_channels": 32,
|
56 |
+
"samples_per_patch": 16,
|
57 |
+
"self_attention_widening_factor": 1,
|
58 |
+
"torch_dtype": "float32",
|
59 |
+
"train_size": [
|
60 |
+
368,
|
61 |
+
496
|
62 |
+
],
|
63 |
+
"transformers_version": "4.18.0",
|
64 |
+
"use_query_residual": true,
|
65 |
+
"v_channels": null,
|
66 |
+
"vocab_size": 262
|
67 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": 256,
|
3 |
+
"do_center_crop": true,
|
4 |
+
"do_normalize": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"feature_extractor_type": "PerceiverFeatureExtractor",
|
7 |
+
"image_mean": [
|
8 |
+
0.485,
|
9 |
+
0.456,
|
10 |
+
0.406
|
11 |
+
],
|
12 |
+
"image_std": [
|
13 |
+
0.229,
|
14 |
+
0.224,
|
15 |
+
0.225
|
16 |
+
],
|
17 |
+
"resample": 3,
|
18 |
+
"size": 224
|
19 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d4b1a7a4f9ac44fe9c5529ecf074ddb465c5bb1dbcfe69dfdc2e426542559ea
|
3 |
+
size 51984423
|
runs/Apr26_05-51-09_96a65ca7abb9/1650952295.0433466/events.out.tfevents.1650952295.96a65ca7abb9.73.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d583f6d34cf6ae23b942c0383934545b6a23953280be08833358d79b1360efc
|
3 |
+
size 4982
|
runs/Apr26_05-51-09_96a65ca7abb9/events.out.tfevents.1650952295.96a65ca7abb9.73.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c81008e0990417094d4eac15fd39e037f49bcdbf72edc8a75d950ff34ef013ca
|
3 |
+
size 16349
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0659fac916e14dfd0c2700e9dbe555cc2d1f185a6392a9adbe36ce36a639165
|
3 |
+
size 3183
|