Skip to content

Commit

Permalink
Remove 70B models (not yet supported)
Browse files Browse the repository at this point in the history
  • Loading branch information
justusc committed Sep 11, 2023
1 parent 0f1d894 commit 09c0698
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/together/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"togethercomputer/RedPajama-INCITE-Instruct-3B-v1",
"togethercomputer/Pythia-Chat-Base-7B",
"togethercomputer/Llama-2-7B-32K-Instruct",
"togethercomputer/llama-2-70b",
"togethercomputer/llama-2-70b-chat",
# "togethercomputer/llama-2-70b",
# "togethercomputer/llama-2-70b-chat",
]

# List of models we support and their particular behavior, ie special tokens,
Expand Down Expand Up @@ -73,8 +73,8 @@
"togethercomputer/falcon-7b": {},
"togethercomputer/llama-2-13b-chat": {"bos_token": "<s>", "eos_token": "</s>"},
"togethercomputer/llama-2-13b": {"bos_token": "<s>", "eos_token": "</s>"},
"togethercomputer/llama-2-70b-chat": {"bos_token": "<s>", "eos_token": "</s>"},
"togethercomputer/llama-2-70b": {"bos_token": "<s>", "eos_token": "</s>"},
# "togethercomputer/llama-2-70b-chat": {"bos_token": "<s>", "eos_token": "</s>"},
# "togethercomputer/llama-2-70b": {"bos_token": "<s>", "eos_token": "</s>"},
"togethercomputer/llama-2-7b-chat": {"bos_token": "<s>", "eos_token": "</s>"},
"togethercomputer/llama-2-7b": {"bos_token": "<s>", "eos_token": "</s>"},
"togethercomputer/mpt-30b-chat": {},
Expand Down
4 changes: 2 additions & 2 deletions src/together/finetune.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def model_param_count(name: str) -> int:
"togethercomputer/CodeLlama-13b": 13016028160,
"togethercomputer/CodeLlama-13b-Python": 13016028160,
"togethercomputer/CodeLlama-13b-Instruct": 13016028160,
"togethercomputer/llama-2-70b": 68976648192,
"togethercomputer/llama-2-70b-chat": 68976648192,
# "togethercomputer/llama-2-70b": 68976648192,
# "togethercomputer/llama-2-70b-chat": 68976648192,
}
try:
return pcount[name]
Expand Down

0 comments on commit 09c0698

Please sign in to comment.