-
Notifications
You must be signed in to change notification settings - Fork 8
feat: optuna #121
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
ayushkrtiwari
merged 12 commits into
OPCODE-Open-Spring-Fest:main
from
Satvik-Singh192:feat/optuna
Nov 15, 2025
Merged
feat: optuna #121
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
ba43514
feat: optuna
Satvik-Singh192 0602130
fix: fixed some checks
Satvik-Singh192 cbe1085
fix: fixed suggestions
Satvik-Singh192 87b180b
fix: fixed su
Satvik-Singh192 a3bfccb
fix: fixed suggestions
Satvik-Singh192 3879de5
fix: fixed suggestions
Satvik-Singh192 f536950
fix: black formatting
Satvik-Singh192 5203024
fix: pulled frontend
Satvik-Singh192 4a3dda8
fix: ruff
Satvik-Singh192 7cd298e
fix: copilot review processed
Satvik-Singh192 f13046a
Merge branch 'main' into feat/optuna
Satvik-Singh192 1c354e2
docs: readme unchanged
ayushkrtiwari 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
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,27 @@ | ||
| # Example configuration for hyperparameter tuning with Optuna | ||
| # Usage: qrs autotune -c examples/autotune_config.yaml | ||
|
|
||
| # Data configuration | ||
| data_file: "data_sample/sample_prices.csv" | ||
|
|
||
| # Factor to optimize | ||
| factor_type: "momentum" # Options: momentum, value, size, volatility | ||
|
|
||
| # Optimization settings | ||
| n_trials: 100 # Number of trials to run | ||
| metric: "sharpe_ratio" # Metric to optimize (sharpe_ratio, total_return, cagr, etc.) | ||
|
|
||
| # Output configuration | ||
| output: "output/tuning_results.json" | ||
| study_name: "momentum_factor_study" | ||
|
|
||
| # Pruning configuration (for early stopping of bad trials) | ||
| # Options: none, median, percentile | ||
| pruner: "median" | ||
|
|
||
| # Optional: RDB storage for distributed tuning runs | ||
| # Uncomment and configure for multi-worker setups | ||
| # storage: "sqlite:///optuna.db" | ||
| # For PostgreSQL: "postgresql://user:password@localhost/dbname" | ||
| # For MySQL: "mysql://user:password@localhost/dbname" | ||
|
|
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 |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| """Hyperparameter tuning with Optuna.""" | ||
|
|
||
| from .optuna_runner import OptunaRunner, create_backtest_objective | ||
|
|
||
| __all__ = ["OptunaRunner", "create_backtest_objective"] |
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.