11import argparse
2-
2+
33def parse ():
44 parser = argparse .ArgumentParser ()
55 parser .add_argument (
@@ -39,7 +39,6 @@ def parse():
3939 parser .add_argument ("--output" , type = str , default = "output" )
4040 parser .add_argument ("--checkpoint" , type = int , default = None )
4141 parser .add_argument ("--dryrun" , action = "store_true" , default = False )
42- parser .add_argument ("--alpha" , type = float , default = 0.5 )
4342 # add config epoch that is a list of epochs
4443 parser .add_argument (
4544 "--vis_epoch" ,
@@ -60,11 +59,14 @@ def parse():
6059 parser .add_argument ("--name_exp" , type = str , default = None )
6160 parser .add_argument ("--cuda_num" , type = int , default = None )
6261 parser .add_argument ("--seed" , type = int , default = 300103 )
63- parser .add_argument ("--beta " , type = float , default = 0.5 )
62+ parser .add_argument ("--alpha " , type = float , default = 0.5 )
6463 parser .add_argument ("--epoch" , type = int , default = None )
6564 parser .add_argument ("--time" , type = int , default = 60 )
6665 parser .add_argument ("--data" , type = str , default = "CodeNet" )
6766 parser .add_argument ("--runtime_detection" , action = "store_true" , default = False )
6867 parser .add_argument ("--bug_localization" , action = "store_true" , default = False )
68+ parser .add_argument ("--claude_api_key" , type = str , default = None )
69+ parser .add_argument ("--model" , type = str , default = 'claude-3-5-sonnet-20240620' )
70+ parser .add_argument ("--folder_path" , type = str , default = 'fuzz_testing_dataset' )
6971 args = parser .parse_args ()
7072 return args
0 commit comments