diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7c543625a..d9a02b991 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ on: env: # Change this to invalidate existing cache. - CACHE_PREFIX: v0 + CACHE_PREFIX: v1 PYTHONPATH: ./ TOKENIZERS_PARALLELISM: 'false' diff --git a/evaluation/requirements.txt b/evaluation/requirements.txt index 2619ea74c..e82c2bc23 100644 --- a/evaluation/requirements.txt +++ b/evaluation/requirements.txt @@ -1,4 +1,4 @@ ai2-catwalk @ git+https://github.com/allenai/catwalk.git@olmo-eval -hf_olmo @ git+https://github.com/allenai/LLM.git@main#subdirectory=hf_olmo +hf_olmo @ git+https://github.com/allenai/OLMo.git@main#subdirectory=hf_olmo pygsheets #ai2-tango[beaker,gs]==1.2.1 diff --git a/inference/requirements.txt b/inference/requirements.txt index e1d490caf..676f2dd27 100644 --- a/inference/requirements.txt +++ b/inference/requirements.txt @@ -1,3 +1,3 @@ compression/dependencies/AutoGPTQ efficiency/dependencies/efficiency-pentathlon/ -hf_olmo @ git+ssh://git@github.com/allenai/LLM.git@main#subdirectory=hf_olmo +hf_olmo @ git+ssh://git@github.com/allenai/OLMo.git@main#subdirectory=hf_olmo diff --git a/pyproject.toml b/pyproject.toml index d9d1df9f0..a1592d8ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,8 +14,8 @@ requires-python = ">=3.8" license = {file = "LICENSE"} [project.urls] -Homepage = "https://github.com/allenai/LLM" -Repository = "https://github.com/allenai/LLM" +Homepage = "https://github.com/allenai/OLMo" +Repository = "https://github.com/allenai/OLMo" [tool.setuptools] include-package-data = true diff --git a/scripts/prepare_changelog.py b/scripts/prepare_changelog.py index 6a286df82..5d9b9c495 100644 --- a/scripts/prepare_changelog.py +++ b/scripts/prepare_changelog.py @@ -27,7 +27,7 @@ def main() -> None: lines.insert(insert_index, "\n") lines.insert( insert_index + 1, - f"## [v{VERSION}](https://github.com/allenai/LLM/releases/tag/v{VERSION}) - " + f"## [v{VERSION}](https://github.com/allenai/OLMo/releases/tag/v{VERSION}) - " f"{datetime.now().strftime('%Y-%m-%d')}\n", )