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

fix default model directory naming conflict by rn routellm/ to routel… #53

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,13 @@ The configuration for routers is specified in either the `config` argument for `

An example configuration is provided in the `config.example.yaml` file - it provides the configurations for routers that have trained on Arena data augmented using GPT-4 as a judge. The models and datasets used are all hosted on Hugging Face under the [RouteLLM](https://huggingface.co/routellm) and [LMSYS](https://huggingface.co/lmsys) organizations.

The default model paths in the **config.example.yaml** may lead you to issue something like the following:

```bash
git lfs install
git clone https://huggingface.co/routellm/mf_gpt4_augmented ./routellm-models/mf_gpt4_augmented
```

## Contribution

We welcome contributions! Please feel free to open an issue or a pull request if you have any suggestions or improvements.
Expand Down
6 changes: 3 additions & 3 deletions config.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sw_ranking:
- routellm/arena_battles_embeddings
- routellm/gpt4_judge_battles_embeddings
causal_llm:
checkpoint_path: routellm/causal_llm_gpt4_augmented
checkpoint_path: routellm-models/causal_llm_gpt4_augmented
bert:
checkpoint_path: routellm/bert_gpt4_augmented
checkpoint_path: routellm-models/bert_gpt4_augmented
mf:
checkpoint_path: routellm/mf_gpt4_augmented
checkpoint_path: routellm-models/mf_gpt4_augmented