EducationalTestingService / skll

SciKit-Learn Laboratory (SKLL) makes it easy to run machine learning experiments.
http://skll.readthedocs.org
Other
550 stars 69 forks source link

Fix warnings for learning curve experiments #762

Closed desilinguist closed 5 months ago

desilinguist commented 6 months ago

When running learning curve tasks, the following warnings are generated from both matplotlib and seaborn. We should update the code to resolve this.


2024-01-26 10:05:11,592 - matplotlib.category - INFO - Using categorical units to plot a list of strings that are all parsable as floats or dates. If these strings should be plotted as numbers, cast to the appropriate data type before plotting.
/Users/nmadnani/anaconda/envs/sklldev/lib/python3.11/site-packages/seaborn/axisgrid.py:854: UserWarning: 

The `scale` parameter is deprecated and will be removed in v0.15.0. You can now control the size of each plot element using matplotlib `Line2D` parameters (e.g., `linewidth`, `markersize`, etc.).

  func(*plot_args, **plot_kwargs)
desilinguist commented 5 months ago

This was also fixed via #766.