-
Notifications
You must be signed in to change notification settings - Fork 38
"notebook.csv" format is different #28
Description
Hi, thank you for sharing this code!
I have training on my own data with the following code:
cnn_config = {"model":model,
"child_batch_size": 32,
"child_epochs": 50}
deepaug = DeepAugment(images=x_train, labels=y_train, config=cnn_config)
best_policies = deepaug.optimize(100)
The columns names in the CSV file are different from the names of the columns that you display on "notebooks/result-analyses/*".
My columns names are:
acc | loss | val_acc | val_loss | trial_no | A_aug1_type | A_aug1_magnitude | A_aug2_type | A_aug2_magnitude | B_aug1_type | B_aug1_magnitude | B_aug2_type | B_aug2_magnitude | C_aug1_type | C_aug1_magnitude | C_aug2_type | C_aug2_magnitude | D_aug1_type | D_aug1_magnitude | D_aug2_type | D_aug2_magnitude | E_aug1_type | E_aug1_magnitude | E_aug2_type | E_aug2_magnitude | sample_no | mean_late_val_acc | epoch
while yours are:
acc | loss | val_acc | val_loss | trial_no | aug1_type | aug1_magnitude | aug2_type | aug2_magnitude | aug3_type | aug3_magnitude | portion | sample_no | mean_late_val_acc
Do I have to run more code lines to get the same file as yours?