You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Training until high epoch...
Epoch 3 / Iteration 0, before phase two:
AUC: 0.464402875861, EER: 0.526548672566, EER_thr: 0.999987721443, F1_score: 0.265179677819
Traceback (most recent call last):
File "train.py", line 25, in
model.train(opt.normal_class)
File "/content/gdrive/MyDrive/OGNet-master/model.py", line 146, in train
fine_tune() #Phase two
File "/content/gdrive/MyDrive/OGNet-master/fine_tune_dicriminator.py", line 24, in fine_tune
model.train(load_model_epoch, model_folder_path)
File "/content/gdrive/MyDrive/OGNet-master/model_fine_tune_discriminator.py", line 116, in train
return d_model_save_path, g_model_save_path
UnboundLocalError: local variable 'd_model_save_path' referenced before assignment
I had this problem while training the Oldisgold model.Could you please help me to slove this? Thank you sincerely and best wishes.
The text was updated successfully, but these errors were encountered:
I've run into this problem, too. Find the file where d_model_save_path defined, it is defined inside a if statement, and you need to define it outside the statement or check if it exist when using it.
I've run into this problem, too. Find the file where d_model_save_path defined, it is defined inside a if statement, and you need to define it outside the statement or check if it exist when using it.
First, thank you for your help,I 've found the d_model_save_path defined in model.py and model_fine_tune_discriminator.py.Then I defined it outside the if statement,however,it doesn't seem to work.Could you send me your modified py codes please?That'll help me a lot.
Training until high epoch...
Epoch 3 / Iteration 0, before phase two:
AUC: 0.464402875861, EER: 0.526548672566, EER_thr: 0.999987721443, F1_score: 0.265179677819
Traceback (most recent call last):
File "train.py", line 25, in
model.train(opt.normal_class)
File "/content/gdrive/MyDrive/OGNet-master/model.py", line 146, in train
fine_tune() #Phase two
File "/content/gdrive/MyDrive/OGNet-master/fine_tune_dicriminator.py", line 24, in fine_tune
model.train(load_model_epoch, model_folder_path)
File "/content/gdrive/MyDrive/OGNet-master/model_fine_tune_discriminator.py", line 116, in train
return d_model_save_path, g_model_save_path
UnboundLocalError: local variable 'd_model_save_path' referenced before assignment
I had this problem while training the Oldisgold model.Could you please help me to slove this? Thank you sincerely and best wishes.
The text was updated successfully, but these errors were encountered: