add logs etc
This commit is contained in:
parent
7d09aa88ab
commit
e4e73972d9
3 changed files with 22673 additions and 0 deletions
21
src/all_qas.py
Normal file
21
src/all_qas.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env python
|
||||
from argparse import ArgumentParser
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class SearchStrategy(Enum):
|
||||
TFQAS = 1
|
||||
GAQAS = 2
|
||||
QDQAS = 3
|
||||
|
||||
|
||||
def main(search_strategy: SearchStrategy):
|
||||
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = ArgumentParser()
|
||||
parser.add_argument("--strategy", type=SearchStrategy, default=SearchStrategy.QDQAS, help="Search strategy")
|
||||
args = parser.parse_args()
|
||||
main(args.strategy)
|
||||
1660
src/log-bak
Normal file
1660
src/log-bak
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue