Skip to content

Commit

Permalink
temp changes to test
Browse files Browse the repository at this point in the history
  • Loading branch information
undfined committed Oct 23, 2024
1 parent efe766b commit 5dff40c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies = [
"omegaconf",
"safetensors",
"importlib_resources",
"s3fs", # REMOVE THIS IN FAVOR OF SOMETHING CONSISTENT ELSEWHERE
]

[project.urls]
Expand Down
4 changes: 3 additions & 1 deletion src/examples/train_with_mixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@ def build_config(run_name: str, overrides: List[str]) -> ExperimentConfig:
"evaluator",
LMEvaluatorCallbackConfig(
eval_dataset=NumpyDatasetConfig(
paths=["/net/nfs/allennlp/llm-data/c4/en/c4-validation.00000-00008.npy"],
paths=[
"s3://ai2-llm/eval-data/perplexity/v3_small_dolma2-tokenizer/c4_en/val/part-0-00000.npy"
],
metadata=[{"label": "c4-validation"}],
name=NumpyDatasetType.padded_fsl,
sequence_length=sequence_length,
Expand Down
2 changes: 1 addition & 1 deletion src/examples/train_with_mixture_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def build_config(run_name: str, overrides: List[str]) -> BeakerLaunchConfig:
num_nodes=1,
num_gpus=4,
shared_filesystem=True,
nfs=True,
nfs=False,
allow_dirty=True,
)

Expand Down

0 comments on commit 5dff40c

Please sign in to comment.