forked from algorithmicsuperintelligence/optillm
-
Notifications
You must be signed in to change notification settings - Fork 1
CePO #1
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
Open
pawelf-cerebras
wants to merge
71
commits into
main
Choose a base branch
from
cepo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
CePO #1
Changes from 14 commits
Commits
Show all changes
71 commits
Select commit
Hold shift + click to select a range
f03c319
Update requirements to include Cerebras dependency
pawelf-cerebras 7849714
Add support for CePO
pawelf-cerebras 380f1be
Initial version of CePO
pawelf-cerebras 53f2f12
Add support for Cerebras client
pawelf-cerebras 80bc1ee
Add pairwise rating and clean up
pawelf-cerebras b368ff6
Fix default rating type
pawelf-cerebras 4762550
Add modification of CePO configs through yaml and cli arguments
erich-cerebras 6b97e89
Fix default CePO config yaml
erich-cerebras 3775054
Merge pull request #2 from CerebrasResearch/erich/yaml_config
erich-cerebras 9a72052
Fix check if cepo_config_file provided
pawelf-cerebras 6cbda31
Add cepo to readme
pawelf-cerebras 36751b1
Minor cleaning
pawelf-cerebras fbec344
Add VS Code to ignore list
pawelf-cerebras d6eccb5
Minor readibility improvements
pawelf-cerebras 162851b
Removed unnecessary comment
pawelf-cerebras 48c42e2
Add cepo results
pawelf-cerebras d5c5763
Make cepo_config.yaml define the default values instead of the datacl…
pawelf-cerebras 093da4b
Updated documentation of CePO
pawelf-cerebras 8ebdd26
Add description of CePO method
pawelf-cerebras c240dbe
Update CePO section of README
pawelf-cerebras 75e5762
Add results for LiveCodeBench and SimpleQA
pawelf-cerebras 846e230
Correct type of the output of cepo
pawelf-cerebras 4f47f9f
Minor fixes and add docstrings
pawelf-cerebras 0c2a8c8
Updatee README.md to add the discord/research channel link
emmac-cerebras 3b3a396
Merge pull request #3 from emmac-cerebras/patch-1
pawelf-cerebras 3e9d83d
Create NOTICE.md
emmac-cerebras d29b203
Update .gitignore
emmac-cerebras c9e8069
Update NOTICE.md
emmac-cerebras b4a265b
Update optillm.py
emmac-cerebras cd8d05b
Update cepo.py
emmac-cerebras f7391f8
Fix typo
pawelf-cerebras e07c864
Make cepo_config required parameter
pawelf-cerebras 45d0463
Convert multi-turn conversations back to messages
codelion feb1905
Update publish.yml
codelion 693cd34
Update setup.py
codelion 53d8d1f
Update setup.py
codelion 9ef6cca
Update setup.py
codelion 377421f
Update setup.py
codelion 64a6331
Update readurls_plugin.py
codelion b67200b
Update publish.yml
codelion de77e4a
Update setup.py
codelion 396986a
Update readurls_plugin.py
codelion 2b16159
Update Dockerfile
codelion 656d7e4
Fix streaming response
codelion b3f124b
return a list
codelion 5134a1e
prep for new release
codelion 21f78b3
Fix the docker file path
codelion 8514832
prep for new release
codelion 5e465f1
Update README.md
codelion 3902338
add gui using new gradio app
codelion e0c63f2
Update setup.py
codelion 2f995fd
Use modernbert based router
codelion c747685
Update setup.py
codelion 243c8dd
Update optillm.py
codelion a3b81e5
Update eval_aime_benchmark.py
codelion 9fcf5c1
Update eval_aime_benchmark.py
codelion f15ebbc
Update setup.py
codelion 077e5cb
Update README.md
codelion 75ff794
Update README.md
codelion 089938d
Update eval_arena_hard_auto_rtc.py
codelion 3ba1009
Update coc_plugin.py
codelion e1b5397
Update coc_plugin.py
codelion d51cd3f
fix dependenices on GPU for local inference
codelion 5fc3ba1
update dependencies
codelion 8335cf7
Update inference.py
codelion d9dd5df
Revert "Update inference.py"
codelion c6ca852
add plugindir flag and env var
codelion dcef2c8
Update publish.yml
codelion e495f81
Update eval_aime_benchmark.py
codelion 9e97d6b
Update publish.yml
codelion 2047553
Add modification of CePO configs through yaml and cli arguments
erich-cerebras File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -164,3 +164,6 @@ cython_debug/ | |
| # Ignore Mac DS_Store files | ||
| .DS_Store | ||
| **/.DS_Store | ||
|
|
||
| # VS Code | ||
| .vscode/ | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| bestofn_n: 3 | ||
| bestofn_temperature: 0.1 | ||
| bestofn_max_tokens: 4096 | ||
| bestofn_rating_type: "absolute" # or "pairwise" | ||
| planning_n: 3 | ||
| planning_m: 6 | ||
| planning_temperature_step1: 0.55 | ||
| planning_temperature_step2: 0.25 | ||
| planning_temperature_step3: 0.1 | ||
| planning_temperature_step4: 0 | ||
| planning_max_tokens_step1: 4096 | ||
| planning_max_tokens_step2: 4096 | ||
| planning_max_tokens_step3: 4096 | ||
| planning_max_tokens_step4: 4096 | ||
|
pawelf-cerebras marked this conversation as resolved.
|
||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.