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
Copy file name to clipboardExpand all lines: Project-Plan.md
+24-4Lines changed: 24 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,14 @@
4
4
* live or dead status of all experiments as of :dec 10th 2024
5
5
* sst2_classical_1: runs well end to end+ has pytest. Latest version can be found in branch titled: run_sst1_classical1
6
6
* sst2_classical2: i.e with bob cat parser, is hitting `both inputs must be same dtype` error again. end of road for now.Latest version can be found in branch titled: run_sst_classical2
7
-
* sst2_quantum1:
8
-
* sst2_quantum2:
7
+
* sst2_quantum1: stuck on time out/ first .fit doesnt respond after a long time. Tried adding a pytest, but not able to cleanly capture a time out.
8
+
* sst2_quantum2: same stuck on time out/ first .fit doesnt respond after a long time. Tried adding a pytest, but not able to cleanly capture a time out.
9
+
9
10
* spanish_classical_1:
10
11
* spanish_classical2:
11
12
* spanish_quantum1:
12
13
* spanish_quantum2:
14
+
13
15
* uspantek_classical_1:
14
16
* uspantek_classical2:
15
17
* uspantek_quantum1:
@@ -54,13 +56,31 @@
54
56
55
57
## Dec 12th 20204
56
58
todos:
57
-
3. add pytest for run_sst1_run_sst1_quantum1
59
+
- add pytest for run_sst1_run_sst1_quantum1 ---done
58
60
- add time out
59
61
- add if wandb
60
62
- merge to staging
61
63
- merge to main
62
-
4. add pytest for run_sst1_run_sst1_quantum2
64
+
- add pytest for run_sst1_run_sst1_quantum2---done/ignored
63
65
- mostly same as above- timeout
66
+
- make wandb optional ---done
67
+
- in a branch called make_wandb_optional_commandline_arg ---done
68
+
- run pytest locally --done
69
+
- merge to main---done
70
+
- pull and run pytest locally : started at 7pm dec 12th
71
+
- create 8 pytests for spanish
72
+
- classical1 x2
73
+
- classical2 x2
74
+
- quantum1 x2
75
+
- quantum2 x2
76
+
- create 8 pytests for uspantek
77
+
- classical1 x2
78
+
- classical2 x2
79
+
- quantum1 x2
80
+
- quantum2 x2
81
+
- add python dictionary
82
+
- start tuning uspantek with whatever of the 8 above you think is best
# plt.show() #code is expecting user closing the picture manually. commenting this temporarily since that was preventing the smooth run/debugging of code
@@ -1054,8 +1063,7 @@ def do_debug(val):#uncomment only for debugging/accessing breakpoints
1054
1063
print("not doing any debugging")
1055
1064
1056
1065
defparse_arguments():
1057
-
parser=argparse.ArgumentParser(description="Description of your script.")
1058
-
parser.add_argument('--do_debug', action="store_true",help="to run debug or not to debug. If yes, will uncomment the attachment code")
1066
+
parser=argparse.ArgumentParser(description="Description of your script.")
1059
1067
parser.add_argument('--dataset', type=str, required=True, default="food_it" ,help="type of dataset-choose from [sst2,uspantek,spanish,food_it,msr_paraphrase_corpus,sst2")
1060
1068
parser.add_argument('--parser', type=parse_name_parser, required=True, help="type of parser to use: [BobCatParser, Spider]")
1061
1069
parser.add_argument('--ansatz', type=parse_name_ansatz, required=True, help="type of ansatz to use: [IQPAnsatz,SpiderAnsatz,Sim14Ansatz, Sim15Ansatz,TensorAnsatz ]")
@@ -1081,6 +1089,8 @@ def parse_arguments():
1081
1089
parser.add_argument('--no_of_test_data_points_to_use', type=int, default=10, required=False, help="65k of sst data was taking a long time. temporarily training on a smaller data")
parser.add_argument('--max_tokens_per_sent', type=int, required=True, help="Bobcat parser doesn't like longer sentences 9 or 10 is like the upper limit")
1092
+
parser.add_argument('--do_debug', action="store_true",help="to run debug or not to debug. If yes, will uncomment the attachment code")
1093
+
parser.add_argument('--use_wandb', action="store_true",help="turn on wandb. making it optional since wandb doesnt work well with cyverse")
0 commit comments