Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LLaMA-2 #101

Merged
merged 7 commits into from
Jul 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
idk
  • Loading branch information
Andrei Panferov committed Jul 21, 2023
commit 18c38cc0987604c0aea00126d858b1a53d65b962
10 changes: 5 additions & 5 deletions tests/test_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ def prepare_model(model_name, use_lora):
@pytest.mark.parametrize(
"model_name",
[
# "bigscience/bloom-560m",
# "gpt2",
# "trl-internal-testing/tiny-random-GPTNeoXForCausalLM",
# "Salesforce/codegen-350M-mono",
"bigscience/bloom-560m",
"gpt2",
"trl-internal-testing/tiny-random-GPTNeoXForCausalLM",
"Salesforce/codegen-350M-mono",
"Bingsu/llama-190m-arch",
"BlackSamorez/llama-2-tiny-testing",
# "BlackSamorez/falcon-40b-tiny-testing",
"BlackSamorez/falcon-40b-tiny-testing",
],
)
def test_forward_gpt2_like(use_lora, use_config, devices, model_name):
Expand Down
Loading