Skip to content

Commit

Permalink
docker
Browse files Browse the repository at this point in the history
  • Loading branch information
ydshieh committed Feb 5, 2024
1 parent ae5c3bd commit e5ad8e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/models/llama/test_inference_llama.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class LLaMaInferenceTest(unittest.TestCase):

def test_foo(self):
ckpt = "meta-llama/Llama-2-7b"
ckpt = "meta-llama/Llama-2-7b-hf"
assert os.getenv("HF_HUB_READ_TOKEN", None) != None
assert type(os.getenv("HF_HUB_READ_TOKEN", None)) == str
assert len(os.getenv("HF_HUB_READ_TOKEN", None)) > 3
Expand Down
2 changes: 1 addition & 1 deletion tests/models/llama/test_train_llama.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class LLaMaTrainingTest(unittest.TestCase):

def test_foo(self):
ckpt = "meta-llama/Llama-2-7b"
ckpt = "meta-llama/Llama-2-7b-hf"
assert os.getenv("HF_HUB_READ_TOKEN", None) != None
assert type(os.getenv("HF_HUB_READ_TOKEN", None)) == str
assert len(os.getenv("HF_HUB_READ_TOKEN", None)) > 3
Expand Down

0 comments on commit e5ad8e3

Please sign in to comment.