Replace wandb with swanlab for experiment tracking with backward compatibility#2
Closed
Replace wandb with swanlab for experiment tracking with backward compatibility#2
Conversation
Copilot
AI
changed the title
[WIP] 请你将这个代码的wandb都换成swanlab
Replace wandb with swanlab for experiment tracking with backward compatibility
Jul 22, 2025
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.
🎯 Overview
This PR migrates the entire KnowRL codebase from WandB to SwanLab for experiment tracking, as requested in the issue. The migration maintains full backward compatibility to ensure existing user setups continue working without interruption.
🚀 What Changed
Core Migration
initialize_wandb_from_yaml()→initialize_swanlab_from_yaml()wandb.log()calls →swanlab.log()wandb.run.get_url()→swanlab.run.urlis_swanlab_available()utility functionFiles Modified
utils.py,main.py, configuration filestrain/trl/trainer/updatedgrpo.yaml, environment variable examplesREADME.mdupdated with SwanLab instructions🔄 Backward Compatibility
The migration is designed to be zero-breaking-change:
Configuration Parameters
Environment Variables
Trainer Compatibility
"swanlab"and"wandb"inreport_toparameterswanlab_project→wandb_project📋 Migration Benefits
🧪 Testing
📚 Documentation
Added comprehensive migration guide (
MIGRATION_GUIDE.md) covering:🎉 Migration Example
Before:
After:
Existing configs continue to work while users transition!
This migration ensures KnowRL users get the benefits of SwanLab's enhanced experiment tracking while maintaining complete compatibility with existing WandB-based setups. Users can migrate gradually without any disruption to their workflows.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.