Skip to content

Commit

Permalink
Remove llama2 outdated references
Browse files Browse the repository at this point in the history
  • Loading branch information
pgmpablo157321 committed Dec 4, 2024
1 parent df7ca0f commit 7ccc9ab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion language/llama3-405b/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ TODO: Host model and grant access to submitters
+ First go to [llama3-request-link](https://ai.meta.com/resources/models-and-libraries/llama-downloads/) and make a request, sign in to HuggingFace (if you don't have account, you'll need to create one). **Please note your authentication credentials** as you may be required to provide them when cloning below.
+ Requires Git Large Files Storage
```
export CHECKPOINT_PATH=${PWD}/Llama-2-70b-chat-hf
export CHECKPOINT_PATH=Meta-Llama-3.1-405B-Instruct
git lfs install
git clone https://huggingface.co/meta-llama/Llama-3.1-405B-Instruct ${CHECKPOINT_PATH}
Expand Down
4 changes: 2 additions & 2 deletions language/llama3-405b/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def get_args():
parser.add_argument(
"--model-path",
type=str,
default="meta-llama/Llama-2-70b-chat-hf",
default="Meta-Llama-3.1-405B-Instruct",
help="Model name",
)
parser.add_argument("--dataset-path", type=str, default=None, help="")
Expand Down Expand Up @@ -110,7 +110,7 @@ def get_args():
parser.add_argument(
"--api-model-name",
type=str,
default="meta-llama/Llama-2-70b-chat-hf",
default="Meta-Llama-3.1-405B-Instruct",
help="Model name(specified in llm server)",
)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion language/llama3-405b/run_offline.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CHECKPOINT_PATH="${CHECKPOINT_PATH:-meta-llama/Llama-2-70b-chat-hf}"
CHECKPOINT_PATH="${CHECKPOINT_PATH:Meta-Llama-3.1-405B-Instruct}"
DATASET_PATH="${DATASET_PATH:-open-orca-val-set.pkl}"

python -u main.py --scenario Offline \
Expand Down
2 changes: 1 addition & 1 deletion language/llama3-405b/run_server.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


CHECKPOINT_PATH="${CHECKPOINT_PATH:-meta-llama/Llama-2-70b-chat-hf}"
CHECKPOINT_PATH="${CHECKPOINT_PATH:Meta-Llama-3.1-405B-Instruct}"
DATASET_PATH="${DATASET_PATH:-open-orca-val-set.pkl}"

python -u main.py --scenario Server \
Expand Down

0 comments on commit 7ccc9ab

Please sign in to comment.