-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat(tuner): Enhance Agent Tune Interface #1079
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
Changes from 25 commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
bebbd42
add function type check
pan-x-c ed5a85a
add agentscope tuner v1 interface
pan-x-c 81d8d62
update tuner interface
pan-x-c f451bcc
add missing file
pan-x-c fea6b96
fix pre-commit
pan-x-c bebf343
finish agentscope tune v1 interface
pan-x-c 59b8deb
fix readme
pan-x-c 657f7ec
rename to tuner
pan-x-c a8c6198
fix example
pan-x-c 435cac4
update readme
pan-x-c 8a1e03b
fix readme
pan-x-c 3326838
fix eval tasksets
pan-x-c 1a4526b
use tuner model
pan-x-c ceca3b3
fix pre-commit
pan-x-c 789de86
update readme
pan-x-c 68417bc
fix model type
pan-x-c f22eef0
refactor structure
pan-x-c 8321195
fix doc
pan-x-c ea0f7c5
update comments
pan-x-c 65b404f
fix comments
pan-x-c a338b38
add function type check
pan-x-c e2396a1
add unittests
pan-x-c 55e7e4f
fix pre-commit
pan-x-c f2e7322
fix missing eval workflow args
pan-x-c 11231b9
fix workflow args
pan-x-c 7837814
fix reponse signature
pan-x-c 423f9dc
fix comments
pan-x-c d20b08d
auto setup cluster on dlc
pan-x-c baaf0a7
fix dlc setup
pan-x-c b36805c
add tuner tutorial
pan-x-c 68bec87
add tuner in tutorial
pan-x-c a631d53
add chinese doc
pan-x-c cf426cd
fix docs
pan-x-c 907924a
clean code
pan-x-c 4e8c373
add reward curve
pan-x-c 6d0963c
fix comments
pan-x-c f9ceb44
fix missing packages
pan-x-c ed40269
move doc from training to tuner
pan-x-c 631ec36
add tips for metrics
pan-x-c db37537
add tips
pan-x-c 58643e6
fix chinese doc
pan-x-c 9ebc8ed
fix en doc
pan-x-c 4251087
add links to samples
pan-x-c ec83c38
fix comments
pan-x-c 64fb8b5
fix comments
pan-x-c 1f0429f
fix algorithm doc
pan-x-c 3163b94
fix comments
pan-x-c 99fe36d
fix type doc
pan-x-c 5970355
fix comments
pan-x-c b274cd8
fix eval workflow_args
pan-x-c f2e27ed
Merge branch 'main' into feature/tuner_enhance
pan-x-c 03e7733
fix dependencies
pan-x-c ef1461a
fix comments
pan-x-c 6ff7f85
rename modules
pan-x-c 4b2d9e9
fix pre-commit
pan-x-c 3652692
remove template yaml
pan-x-c 1a5d036
fix conflict
pan-x-c a873ace
fix config
pan-x-c ad23a5d
fix pre-commit
pan-x-c 0dc0f01
fix pre-commit
pan-x-c 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
|---|---|---|
| @@ -1,10 +1,7 @@ | ||
| # -*- coding: utf-8 -*- | ||
| """The learning module of AgentScope, including RL and SFT.""" | ||
| """This module has been deprecated and renamed to 'agentscope.tuner'.""" | ||
|
|
||
| from ._tune import tune | ||
| from ._workflow import WorkflowType | ||
|
|
||
| __all__ = [ | ||
| "tune", | ||
| "WorkflowType", | ||
| ] | ||
| raise ImportError( | ||
| "The 'agentscope.tune' module has been renamed to 'agentscope.tuner'. " | ||
| "Please update your imports: 'from agentscope.tuner import ...'", | ||
| ) |
This file was deleted.
Oops, something went wrong.
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.