Skip to content

Commit

Permalink
Update argument_funcs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kjysmu authored Nov 3, 2023
1 parent eb7089d commit 4fe7f78
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions utilities/argument_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,11 @@ def print_eval_args(args):
def parse_generate_args():
parser = argparse.ArgumentParser()
outputpath = "./output_vevo/"+version

if IS_VIDEO:
modelpath = "./saved_models/"+version+ "/"+VIS_MODELS_PATH+"/results/best_acc_weights.pickle"
modelpathReg = "./saved_models/"+version+ "/"+VIS_MODELS_PATH+"/results_regression_bigru/best_rmse_weights.pickle"
modelpath = "./saved_models/AMT/best_acc_weights.pickle"
modelpathReg = "./saved_models/AMT/best_rmse_weights.pickle"
# modelpath = "./saved_models/"+version+ "/"+VIS_MODELS_PATH+"/results/best_acc_weights.pickle"
# modelpathReg = "./saved_models/"+version+ "/"+VIS_MODELS_PATH+"/results_regression_bigru/best_rmse_weights.pickle"
else:
modelpath = "./saved_models/"+version+ "/no_video/results/best_acc_weights.pickle"
modelpathReg = None
Expand Down

0 comments on commit 4fe7f78

Please sign in to comment.