bryanrsmith
commited on
Commit
·
9dfb3e2
1
Parent(s):
21a45f4
Upload folder using huggingface_hub
Browse files- README.md +42 -0
- checkpoint-33/config.json +43 -0
- checkpoint-33/model.safetensors +3 -0
- checkpoint-33/optimizer.pt +3 -0
- checkpoint-33/rng_state.pth +3 -0
- checkpoint-33/scheduler.pt +3 -0
- checkpoint-33/trainer_state.json +237 -0
- checkpoint-33/training_args.bin +3 -0
- config.json +43 -0
- model.safetensors +3 -0
- preprocessor_config.json +22 -0
- training_args.bin +3 -0
- training_params.json +29 -0
README.md
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- autotrain
|
5 |
+
- image-classification
|
6 |
+
widget:
|
7 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/tiger.jpg
|
8 |
+
example_title: Tiger
|
9 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/teapot.jpg
|
10 |
+
example_title: Teapot
|
11 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/palace.jpg
|
12 |
+
example_title: Palace
|
13 |
+
datasets:
|
14 |
+
- 99spokes/autotrain-data-autotrain-vit
|
15 |
+
---
|
16 |
+
|
17 |
+
# Model Trained Using AutoTrain
|
18 |
+
|
19 |
+
- Problem type: Image Classification
|
20 |
+
|
21 |
+
## Validation Metricsg
|
22 |
+
loss: nan
|
23 |
+
|
24 |
+
f1_macro: 0.020408163265306124
|
25 |
+
|
26 |
+
f1_micro: 0.07692307692307693
|
27 |
+
|
28 |
+
f1_weighted: 0.010989010989010992
|
29 |
+
|
30 |
+
precision_macro: 0.01098901098901099
|
31 |
+
|
32 |
+
precision_micro: 0.07692307692307693
|
33 |
+
|
34 |
+
precision_weighted: 0.00591715976331361
|
35 |
+
|
36 |
+
recall_macro: 0.14285714285714285
|
37 |
+
|
38 |
+
recall_micro: 0.07692307692307693
|
39 |
+
|
40 |
+
recall_weighted: 0.07692307692307693
|
41 |
+
|
42 |
+
accuracy: 0.07692307692307693
|
checkpoint-33/config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-base-patch16-384",
|
3 |
+
"_num_labels": 7,
|
4 |
+
"architectures": [
|
5 |
+
"ViTForImageClassification"
|
6 |
+
],
|
7 |
+
"attention_probs_dropout_prob": 0.0,
|
8 |
+
"encoder_stride": 16,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.0,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "action",
|
14 |
+
"1": "frameset",
|
15 |
+
"2": "geometry",
|
16 |
+
"3": "other",
|
17 |
+
"4": "placeholder",
|
18 |
+
"5": "studio-other",
|
19 |
+
"6": "studio-side"
|
20 |
+
},
|
21 |
+
"image_size": 384,
|
22 |
+
"initializer_range": 0.02,
|
23 |
+
"intermediate_size": 3072,
|
24 |
+
"label2id": {
|
25 |
+
"action": 0,
|
26 |
+
"frameset": 1,
|
27 |
+
"geometry": 2,
|
28 |
+
"other": 3,
|
29 |
+
"placeholder": 4,
|
30 |
+
"studio-other": 5,
|
31 |
+
"studio-side": 6
|
32 |
+
},
|
33 |
+
"layer_norm_eps": 1e-12,
|
34 |
+
"model_type": "vit",
|
35 |
+
"num_attention_heads": 12,
|
36 |
+
"num_channels": 3,
|
37 |
+
"num_hidden_layers": 12,
|
38 |
+
"patch_size": 16,
|
39 |
+
"problem_type": "single_label_classification",
|
40 |
+
"qkv_bias": true,
|
41 |
+
"torch_dtype": "float32",
|
42 |
+
"transformers_version": "4.36.1"
|
43 |
+
}
|
checkpoint-33/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:404ecb90ecba29a3f8be64ad2d48c75e444153e7140cf7caf40bbb1206f854a7
|
3 |
+
size 344406716
|
checkpoint-33/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be0d677ec29274c468d83ae2adfeb4ce98e9b9367881ac43da8f2606d86fb97e
|
3 |
+
size 1640
|
checkpoint-33/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:85ef6773a14678106adf23f301fb08e8c48cbca623b2217af7815cf21fb08e92
|
3 |
+
size 14244
|
checkpoint-33/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:568b4092fe5f2747f46b3b3c6e6e0c8fe23d6f86bafcc38694a95b43c8ac044b
|
3 |
+
size 1064
|
checkpoint-33/trainer_state.json
ADDED
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": NaN,
|
3 |
+
"best_model_checkpoint": "/tmp/model/checkpoint-33",
|
4 |
+
"epoch": 1.0,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 33,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"epoch": 0.03,
|
13 |
+
"learning_rate": 0.0,
|
14 |
+
"loss": 0.0,
|
15 |
+
"step": 1
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"epoch": 0.06,
|
19 |
+
"learning_rate": 0.0,
|
20 |
+
"loss": 0.0,
|
21 |
+
"step": 2
|
22 |
+
},
|
23 |
+
{
|
24 |
+
"epoch": 0.09,
|
25 |
+
"learning_rate": 0.0,
|
26 |
+
"loss": 0.0,
|
27 |
+
"step": 3
|
28 |
+
},
|
29 |
+
{
|
30 |
+
"epoch": 0.12,
|
31 |
+
"learning_rate": 0.0,
|
32 |
+
"loss": 0.0,
|
33 |
+
"step": 4
|
34 |
+
},
|
35 |
+
{
|
36 |
+
"epoch": 0.15,
|
37 |
+
"learning_rate": 0.0,
|
38 |
+
"loss": 0.0,
|
39 |
+
"step": 5
|
40 |
+
},
|
41 |
+
{
|
42 |
+
"epoch": 0.18,
|
43 |
+
"learning_rate": 0.0,
|
44 |
+
"loss": 0.0,
|
45 |
+
"step": 6
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.21,
|
49 |
+
"learning_rate": 0.0,
|
50 |
+
"loss": 0.0,
|
51 |
+
"step": 7
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"epoch": 0.24,
|
55 |
+
"learning_rate": 0.0,
|
56 |
+
"loss": 0.0,
|
57 |
+
"step": 8
|
58 |
+
},
|
59 |
+
{
|
60 |
+
"epoch": 0.27,
|
61 |
+
"learning_rate": 0.0,
|
62 |
+
"loss": 0.0,
|
63 |
+
"step": 9
|
64 |
+
},
|
65 |
+
{
|
66 |
+
"epoch": 0.3,
|
67 |
+
"learning_rate": 0.0,
|
68 |
+
"loss": 0.0,
|
69 |
+
"step": 10
|
70 |
+
},
|
71 |
+
{
|
72 |
+
"epoch": 0.33,
|
73 |
+
"learning_rate": 0.0,
|
74 |
+
"loss": 0.0,
|
75 |
+
"step": 11
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"epoch": 0.36,
|
79 |
+
"learning_rate": 0.0,
|
80 |
+
"loss": 0.0,
|
81 |
+
"step": 12
|
82 |
+
},
|
83 |
+
{
|
84 |
+
"epoch": 0.39,
|
85 |
+
"learning_rate": 0.0,
|
86 |
+
"loss": 0.0,
|
87 |
+
"step": 13
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.42,
|
91 |
+
"learning_rate": 0.0,
|
92 |
+
"loss": 0.0,
|
93 |
+
"step": 14
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.45,
|
97 |
+
"learning_rate": 0.0,
|
98 |
+
"loss": 0.0,
|
99 |
+
"step": 15
|
100 |
+
},
|
101 |
+
{
|
102 |
+
"epoch": 0.48,
|
103 |
+
"learning_rate": 0.0,
|
104 |
+
"loss": 0.0,
|
105 |
+
"step": 16
|
106 |
+
},
|
107 |
+
{
|
108 |
+
"epoch": 0.52,
|
109 |
+
"learning_rate": 0.0,
|
110 |
+
"loss": 0.0,
|
111 |
+
"step": 17
|
112 |
+
},
|
113 |
+
{
|
114 |
+
"epoch": 0.55,
|
115 |
+
"learning_rate": 0.0,
|
116 |
+
"loss": 0.0,
|
117 |
+
"step": 18
|
118 |
+
},
|
119 |
+
{
|
120 |
+
"epoch": 0.58,
|
121 |
+
"learning_rate": 0.0,
|
122 |
+
"loss": 0.0,
|
123 |
+
"step": 19
|
124 |
+
},
|
125 |
+
{
|
126 |
+
"epoch": 0.61,
|
127 |
+
"learning_rate": 0.0,
|
128 |
+
"loss": 0.0,
|
129 |
+
"step": 20
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.64,
|
133 |
+
"learning_rate": 0.0,
|
134 |
+
"loss": 0.0,
|
135 |
+
"step": 21
|
136 |
+
},
|
137 |
+
{
|
138 |
+
"epoch": 0.67,
|
139 |
+
"learning_rate": 0.0,
|
140 |
+
"loss": 0.0,
|
141 |
+
"step": 22
|
142 |
+
},
|
143 |
+
{
|
144 |
+
"epoch": 0.7,
|
145 |
+
"learning_rate": 0.0,
|
146 |
+
"loss": 0.0,
|
147 |
+
"step": 23
|
148 |
+
},
|
149 |
+
{
|
150 |
+
"epoch": 0.73,
|
151 |
+
"learning_rate": 0.0,
|
152 |
+
"loss": 0.0,
|
153 |
+
"step": 24
|
154 |
+
},
|
155 |
+
{
|
156 |
+
"epoch": 0.76,
|
157 |
+
"learning_rate": 0.0,
|
158 |
+
"loss": 0.0,
|
159 |
+
"step": 25
|
160 |
+
},
|
161 |
+
{
|
162 |
+
"epoch": 0.79,
|
163 |
+
"learning_rate": 0.0,
|
164 |
+
"loss": 0.0,
|
165 |
+
"step": 26
|
166 |
+
},
|
167 |
+
{
|
168 |
+
"epoch": 0.82,
|
169 |
+
"learning_rate": 0.0,
|
170 |
+
"loss": 0.0,
|
171 |
+
"step": 27
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.85,
|
175 |
+
"learning_rate": 0.0,
|
176 |
+
"loss": 0.0,
|
177 |
+
"step": 28
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"epoch": 0.88,
|
181 |
+
"learning_rate": 0.0,
|
182 |
+
"loss": 0.0,
|
183 |
+
"step": 29
|
184 |
+
},
|
185 |
+
{
|
186 |
+
"epoch": 0.91,
|
187 |
+
"learning_rate": 0.0,
|
188 |
+
"loss": 0.0,
|
189 |
+
"step": 30
|
190 |
+
},
|
191 |
+
{
|
192 |
+
"epoch": 0.94,
|
193 |
+
"learning_rate": 0.0,
|
194 |
+
"loss": 0.0,
|
195 |
+
"step": 31
|
196 |
+
},
|
197 |
+
{
|
198 |
+
"epoch": 0.97,
|
199 |
+
"learning_rate": 0.0,
|
200 |
+
"loss": 0.0,
|
201 |
+
"step": 32
|
202 |
+
},
|
203 |
+
{
|
204 |
+
"epoch": 1.0,
|
205 |
+
"learning_rate": 0.0,
|
206 |
+
"loss": 0.0,
|
207 |
+
"step": 33
|
208 |
+
},
|
209 |
+
{
|
210 |
+
"epoch": 1.0,
|
211 |
+
"eval_accuracy": 0.07692307692307693,
|
212 |
+
"eval_f1_macro": 0.020408163265306124,
|
213 |
+
"eval_f1_micro": 0.07692307692307693,
|
214 |
+
"eval_f1_weighted": 0.010989010989010992,
|
215 |
+
"eval_loss": NaN,
|
216 |
+
"eval_precision_macro": 0.01098901098901099,
|
217 |
+
"eval_precision_micro": 0.07692307692307693,
|
218 |
+
"eval_precision_weighted": 0.00591715976331361,
|
219 |
+
"eval_recall_macro": 0.14285714285714285,
|
220 |
+
"eval_recall_micro": 0.07692307692307693,
|
221 |
+
"eval_recall_weighted": 0.07692307692307693,
|
222 |
+
"eval_runtime": 1.2533,
|
223 |
+
"eval_samples_per_second": 51.861,
|
224 |
+
"eval_steps_per_second": 3.989,
|
225 |
+
"step": 33
|
226 |
+
}
|
227 |
+
],
|
228 |
+
"logging_steps": 1,
|
229 |
+
"max_steps": 99,
|
230 |
+
"num_input_tokens_seen": 0,
|
231 |
+
"num_train_epochs": 3,
|
232 |
+
"save_steps": 500,
|
233 |
+
"total_flos": 5.895722366867866e+16,
|
234 |
+
"train_batch_size": 8,
|
235 |
+
"trial_name": null,
|
236 |
+
"trial_params": null
|
237 |
+
}
|
checkpoint-33/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7260912a1f153e375ebfb46e5ebba07b694526aef75d50365d14a67e5d63f23c
|
3 |
+
size 4728
|
config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/vit-base-patch16-384",
|
3 |
+
"_num_labels": 7,
|
4 |
+
"architectures": [
|
5 |
+
"ViTForImageClassification"
|
6 |
+
],
|
7 |
+
"attention_probs_dropout_prob": 0.0,
|
8 |
+
"encoder_stride": 16,
|
9 |
+
"hidden_act": "gelu",
|
10 |
+
"hidden_dropout_prob": 0.0,
|
11 |
+
"hidden_size": 768,
|
12 |
+
"id2label": {
|
13 |
+
"0": "action",
|
14 |
+
"1": "frameset",
|
15 |
+
"2": "geometry",
|
16 |
+
"3": "other",
|
17 |
+
"4": "placeholder",
|
18 |
+
"5": "studio-other",
|
19 |
+
"6": "studio-side"
|
20 |
+
},
|
21 |
+
"image_size": 384,
|
22 |
+
"initializer_range": 0.02,
|
23 |
+
"intermediate_size": 3072,
|
24 |
+
"label2id": {
|
25 |
+
"action": 0,
|
26 |
+
"frameset": 1,
|
27 |
+
"geometry": 2,
|
28 |
+
"other": 3,
|
29 |
+
"placeholder": 4,
|
30 |
+
"studio-other": 5,
|
31 |
+
"studio-side": 6
|
32 |
+
},
|
33 |
+
"layer_norm_eps": 1e-12,
|
34 |
+
"model_type": "vit",
|
35 |
+
"num_attention_heads": 12,
|
36 |
+
"num_channels": 3,
|
37 |
+
"num_hidden_layers": 12,
|
38 |
+
"patch_size": 16,
|
39 |
+
"problem_type": "single_label_classification",
|
40 |
+
"qkv_bias": true,
|
41 |
+
"torch_dtype": "float32",
|
42 |
+
"transformers_version": "4.36.1"
|
43 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:404ecb90ecba29a3f8be64ad2d48c75e444153e7140cf7caf40bbb1206f854a7
|
3 |
+
size 344406716
|
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": 384,
|
20 |
+
"width": 384
|
21 |
+
}
|
22 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7260912a1f153e375ebfb46e5ebba07b694526aef75d50365d14a67e5d63f23c
|
3 |
+
size 4728
|
training_params.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"data_path": "99spokes/autotrain-data-autotrain-vit",
|
3 |
+
"model": "google/vit-base-patch16-384",
|
4 |
+
"username": "99spokes",
|
5 |
+
"lr": 5e-05,
|
6 |
+
"epochs": 3,
|
7 |
+
"batch_size": 8,
|
8 |
+
"warmup_ratio": 0.1,
|
9 |
+
"gradient_accumulation": 1,
|
10 |
+
"optimizer": "adamw_torch",
|
11 |
+
"scheduler": "linear",
|
12 |
+
"weight_decay": 0.0,
|
13 |
+
"max_grad_norm": 1.0,
|
14 |
+
"seed": 42,
|
15 |
+
"train_split": "train",
|
16 |
+
"valid_split": "validation",
|
17 |
+
"logging_steps": -1,
|
18 |
+
"project_name": "/tmp/model",
|
19 |
+
"auto_find_batch_size": false,
|
20 |
+
"mixed_precision": "fp16",
|
21 |
+
"save_total_limit": 1,
|
22 |
+
"save_strategy": "epoch",
|
23 |
+
"push_to_hub": true,
|
24 |
+
"repo_id": "99spokes/autotrain-vit",
|
25 |
+
"evaluation_strategy": "epoch",
|
26 |
+
"image_column": "autotrain_image",
|
27 |
+
"target_column": "autotrain_label",
|
28 |
+
"log": "none"
|
29 |
+
}
|