-
Notifications
You must be signed in to change notification settings - Fork 4
Update quickstart with Git and source code tracking #29
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
Conversation
Reviewer's GuideThis PR enhances the Quickstart guide by integrating source code tracking into both script and notebook examples via SourceTrackingConfig and standardizes experiment naming. Class diagram for updated Run instantiation with SourceTrackingConfigclassDiagram
class Run {
+experiment_name: str
+source_tracking_config: SourceTrackingConfig
+project: str
+add_tags(tags: List[str], group_tags: bool)
}
class SourceTrackingConfig {
+upload_entry_point: bool
+upload_diff_head: bool
+upload_diff_upstream: bool
+upload_run_command: bool
}
Run --> SourceTrackingConfig
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR is being reviewed by Cursor Bugbot
Details
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
Description
Include a summary of the changes and the related issue.
Related to: <ClickUp/JIRA task name>
Any expected test failures?
Add a
[X]to relevant checklist items❔ This change
✔️ Pre-merge checklist
🧪 Test Configuration
Summary by Sourcery
Integrate source code tracking into the quickstart examples by updating both the script and notebook to instantiate Run with a SourceTrackingConfig and setting the project parameter.
New Features:
Enhancements: