You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix createexperiment API syntax in tutorial and examples
Fixes incorrect keyword argument usage for the 'name' parameter.
The createexperiment function requires 'name' as a positional argument,
not a keyword argument.
Before: createexperiment(mlf; name="price-paths")
After: createexperiment(mlf, "price-paths")
Fixes#62
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
0 commit comments