Training in progress, step 100
Browse files- config.json +36 -0
- model.safetensors +3 -0
- preprocessor_config.json +36 -0
- training_args.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"ViTForImageClassification"
|
| 4 |
+
],
|
| 5 |
+
"attention_probs_dropout_prob": 0.2,
|
| 6 |
+
"dtype": "float32",
|
| 7 |
+
"encoder_stride": 16,
|
| 8 |
+
"hidden_act": "gelu",
|
| 9 |
+
"hidden_dropout_prob": 0.2,
|
| 10 |
+
"hidden_size": 768,
|
| 11 |
+
"id2label": {
|
| 12 |
+
"0": "sad",
|
| 13 |
+
"1": "angry",
|
| 14 |
+
"2": "relaxed",
|
| 15 |
+
"3": "happy"
|
| 16 |
+
},
|
| 17 |
+
"image_size": 224,
|
| 18 |
+
"initializer_range": 0.02,
|
| 19 |
+
"intermediate_size": 3072,
|
| 20 |
+
"label2id": {
|
| 21 |
+
"angry": "1",
|
| 22 |
+
"happy": "3",
|
| 23 |
+
"relaxed": "2",
|
| 24 |
+
"sad": "0"
|
| 25 |
+
},
|
| 26 |
+
"layer_norm_eps": 1e-12,
|
| 27 |
+
"model_type": "vit",
|
| 28 |
+
"num_attention_heads": 12,
|
| 29 |
+
"num_channels": 3,
|
| 30 |
+
"num_hidden_layers": 12,
|
| 31 |
+
"patch_size": 16,
|
| 32 |
+
"pooler_act": "tanh",
|
| 33 |
+
"pooler_output_size": 768,
|
| 34 |
+
"qkv_bias": true,
|
| 35 |
+
"transformers_version": "4.57.1"
|
| 36 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bbc7d2bb72e3bc9ad708486a8058c8fd8108f461efdd9ed8846e43a220781c97
|
| 3 |
+
size 343230128
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": {
|
| 3 |
+
"height": 224,
|
| 4 |
+
"width": 224
|
| 5 |
+
},
|
| 6 |
+
"data_format": "channels_first",
|
| 7 |
+
"default_to_square": true,
|
| 8 |
+
"device": null,
|
| 9 |
+
"disable_grouping": null,
|
| 10 |
+
"do_center_crop": true,
|
| 11 |
+
"do_convert_rgb": null,
|
| 12 |
+
"do_normalize": true,
|
| 13 |
+
"do_pad": null,
|
| 14 |
+
"do_rescale": true,
|
| 15 |
+
"do_resize": true,
|
| 16 |
+
"image_mean": [
|
| 17 |
+
0.485,
|
| 18 |
+
0.456,
|
| 19 |
+
0.406
|
| 20 |
+
],
|
| 21 |
+
"image_processor_type": "ViTImageProcessorFast",
|
| 22 |
+
"image_std": [
|
| 23 |
+
0.229,
|
| 24 |
+
0.224,
|
| 25 |
+
0.225
|
| 26 |
+
],
|
| 27 |
+
"input_data_format": null,
|
| 28 |
+
"pad_size": null,
|
| 29 |
+
"resample": 3,
|
| 30 |
+
"rescale_factor": 0.00392156862745098,
|
| 31 |
+
"return_tensors": null,
|
| 32 |
+
"size": {
|
| 33 |
+
"height": 256,
|
| 34 |
+
"width": 256
|
| 35 |
+
}
|
| 36 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d4c6e358cc12bf6868a2095e24bfb05dbd4f0ba48a36e004b07cb70d0cd0527
|
| 3 |
+
size 5841
|