Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +48 -0
- ipu_config.json +30 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-base-patch16-224-in21k",
|
3 |
+
"architectures": [
|
4 |
+
"PoptorchPipelinedViTForImageClassification"
|
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": "AnnualCrop",
|
13 |
+
"1": "Forest",
|
14 |
+
"2": "HerbaceousVegetation",
|
15 |
+
"3": "Highway",
|
16 |
+
"4": "Industrial",
|
17 |
+
"5": "Pasture",
|
18 |
+
"6": "PermanentCrop",
|
19 |
+
"7": "Residential",
|
20 |
+
"8": "River",
|
21 |
+
"9": "SeaLake"
|
22 |
+
},
|
23 |
+
"image_size": 224,
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"intermediate_size": 3072,
|
26 |
+
"label2id": {
|
27 |
+
"AnnualCrop": 0,
|
28 |
+
"Forest": 1,
|
29 |
+
"HerbaceousVegetation": 2,
|
30 |
+
"Highway": 3,
|
31 |
+
"Industrial": 4,
|
32 |
+
"Pasture": 5,
|
33 |
+
"PermanentCrop": 6,
|
34 |
+
"Residential": 7,
|
35 |
+
"River": 8,
|
36 |
+
"SeaLake": 9
|
37 |
+
},
|
38 |
+
"layer_norm_eps": 1e-12,
|
39 |
+
"model_type": "vit",
|
40 |
+
"num_attention_heads": 12,
|
41 |
+
"num_channels": 3,
|
42 |
+
"num_hidden_layers": 12,
|
43 |
+
"patch_size": 16,
|
44 |
+
"problem_type": "single_label_classification",
|
45 |
+
"qkv_bias": true,
|
46 |
+
"torch_dtype": "float16",
|
47 |
+
"transformers_version": "4.20.1"
|
48 |
+
}
|
ipu_config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"auto_loss_scaling": false,
|
3 |
+
"device_iterations": 1,
|
4 |
+
"embedding_serialization_factor": 1,
|
5 |
+
"enable_half_partials": true,
|
6 |
+
"executable_cache_dir": "/tmp/exe_cache",
|
7 |
+
"execute_encoder_on_cpu_for_generation": false,
|
8 |
+
"gradient_accumulation_steps": 32,
|
9 |
+
"inference_device_iterations": 4,
|
10 |
+
"inference_replication_factor": 1,
|
11 |
+
"ipus_per_replica": 4,
|
12 |
+
"layers_per_ipu": [
|
13 |
+
3,
|
14 |
+
3,
|
15 |
+
3,
|
16 |
+
3
|
17 |
+
],
|
18 |
+
"matmul_proportion": [
|
19 |
+
0.3
|
20 |
+
],
|
21 |
+
"optimizer_state_offchip": true,
|
22 |
+
"optimum_version": "1.5.0",
|
23 |
+
"output_mode": "final",
|
24 |
+
"recompute_checkpoint_every_layer": true,
|
25 |
+
"replicated_tensor_sharding": false,
|
26 |
+
"replication_factor": 1,
|
27 |
+
"seed": 42,
|
28 |
+
"sharded_execution_for_inference": false,
|
29 |
+
"transformers_version": "4.20.1"
|
30 |
+
}
|
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.5,
|
7 |
+
0.5,
|
8 |
+
0.5
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.5,
|
12 |
+
0.5,
|
13 |
+
0.5
|
14 |
+
],
|
15 |
+
"resample": 2,
|
16 |
+
"size": 224
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1ca9b0436e4b5843e47cd6bbb9b980de86c5facad847ba13ed83180172f2fc92
|
3 |
+
size 171676081
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:960a7bfc3dda483e8841d36bc975ab877bc4c345275fe44ef079cd4b184d7539
|
3 |
+
size 2799
|