Skip to content

Commit

Permalink
fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
Xeadriel committed Mar 13, 2024
1 parent 0476961 commit 91fd295
Show file tree
Hide file tree
Showing 33 changed files with 2 additions and 2 deletions.
Binary file added firelang/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added firelang/__pycache__/stack.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added firelang/models/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added firelang/models/__pycache__/tensor.cpython-310.pyc
Binary file not shown.
Binary file added firelang/models/__pycache__/word.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/index.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/limits.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/log.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/optim.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/parse.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/shape.cpython-310.pyc
Binary file not shown.
Binary file added firelang/utils/__pycache__/timer.cpython-310.pyc
Binary file not shown.
Binary file added scripts/__pycache__/benchmark.cpython-310.pyc
Binary file not shown.
Binary file added scripts/__pycache__/benchmark3.cpython-310.pyc
Binary file not shown.
Binary file added scripts/__pycache__/sentsim.cpython-310.pyc
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main():
args = parser.parse_args()

for checkpoint in args.checkpointsMRS:
model = firelang.modules.FireWord.from_pretrained(checkpoint).to("cuda")
model = FireWord.from_pretrained(checkpoint).to("cuda")
print(model)

# 'benchmarks/MSR/msr_paraphrase_train.csv'
Expand All @@ -50,4 +50,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit 91fd295

Please sign in to comment.