Add Meta-Learn TPE sampler (Warm-starting via Task Similarity)#360
Open
yasumorishima wants to merge 5 commits intooptuna:mainfrom
Open
Add Meta-Learn TPE sampler (Warm-starting via Task Similarity)#360yasumorishima wants to merge 5 commits intooptuna:mainfrom
yasumorishima wants to merge 5 commits intooptuna:mainfrom
Conversation
Implements task similarity-based meta-learning for TPE, based on Watanabe et al. (IJCAI 2023). Transfers knowledge from completed source studies to accelerate optimization on related target tasks. Key features: - Computes task similarity via Total Variation distance on promising regions - Weighted mixture of TPE models across target and source tasks - Falls back to standard TPE during startup trials - No additional dependencies beyond Optuna Benchmark: 98% improvement over standard TPE on shifted quadratic (10 runs x 30 trials, 3 source studies). Closes optuna#190 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Member
|
@nabenabe0928 Do you have any comments? |
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
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.
Summary
How it works
Benchmark
Standard TPE mean best: 0.9686, Meta-Learn TPE mean best: 0.0183 (98% improvement, 10 runs × 30 trials, 3 source studies on shifted quadratic)
Test plan
Closes #190
🤖 Generated with Claude Code