-
-
Notifications
You must be signed in to change notification settings - Fork 11.6k
[Minor] Fix link to the repo #166
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
Merged
Merged
+8
−8
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zhuohan123
approved these changes
Jun 20, 2023
Member
zhuohan123
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
hongxiayang
pushed a commit
to hongxiayang/vllm
that referenced
this pull request
Feb 13, 2024
yukavio
pushed a commit
to yukavio/vllm
that referenced
this pull request
Jul 3, 2024
Using the OpenAI backend of lm-eval (`model="local-completions"`) this
creates a pytest that spins up a vLLM OpenAi server for various models
(Llama, Mistral, Phi 2, Mixtral) and runs gsm8k evals against the server
to compare with known accuracy values. This should be a good test for
making sure accuracies aren't affected for fp16, sparse, and marlin
models as we make releases or upstream syncs. For now, we will leave
this as a manually triggered workflow.
These are the models and evals set up for this PR:
```python
# Each entry in this dictionary holds a model id as the key and an
# EvalDefinition as a value. The EvalDefinition holds a list of Tasks
# to evaluate the models on, each with their own pre-recorded Metrics
MODEL_TEST_POINTS = [
# Llama 2 7B: FP16, FP16 sparse, marlin
("NousResearch/Llama-2-7b-chat-hf",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.2266868840030326),
Metric("exact_match,flexible-extract", 0.22820318423047764)
])
])),
("neuralmagic/Llama-2-7b-pruned50-retrained-ultrachat",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.09855951478392722),
Metric("exact_match,flexible-extract", 0.10083396512509477)
])
],
extra_args=["--sparsity", "sparse_w16a16"])),
("neuralmagic/llama-2-7b-chat-marlin",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.14101592115238817),
Metric("exact_match,flexible-extract", 0.1652767247915087)
])
],
enable_tensor_parallel=False)),
# Mistral 7B: FP16, FP16 sparse, marlin
("teknium/OpenHermes-2.5-Mistral-7B",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.6004548900682335),
Metric("exact_match,flexible-extract", 0.6482183472327521)
])
])),
("neuralmagic/OpenHermes-2.5-Mistral-7B-pruned50",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.4935557240333586),
Metric("exact_match,flexible-extract", 0.5269143290371494)
])
],
extra_args=["--sparsity", "sparse_w16a16"])),
("neuralmagic/OpenHermes-2.5-Mistral-7B-marlin",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.4935557240333586),
Metric("exact_match,flexible-extract", 0.5868081880212282)
])
],
enable_tensor_parallel=False)),
# Phi 2: marlin
("neuralmagic/phi-2-super-marlin",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.49962092494313876),
Metric("exact_match,flexible-extract", 0.5041698256254739)
])
],
enable_tensor_parallel=False)),
# Mixtral: FP16
("mistralai/Mixtral-8x7B-Instruct-v0.1",
EvalDefinition(tasks=[
Task("gsm8k",
metrics=[
Metric("exact_match,strict-match", 0.6550416982562547),
Metric("exact_match,flexible-extract", 0.6603487490523123)
])
],
enable_tensor_parallel=True)),
]
```
mht-sharma
pushed a commit
to mht-sharma/vllm
that referenced
this pull request
Oct 30, 2024
…-project#166) * Miscellaneous changes, Dockerfile components update, remove Cython * Restore Dockerfile and Cython for now
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.