skops icon indicating copy to clipboard operation
skops copied to clipboard

skops is a Python library helping you share your scikit-learn based models and put them in production

Results 75 skops issues
Sort by recently updated
recently updated
newest added

This is an RFC for a suggested solution for the issues discussed on #72 ## Description The proposed model card implementation would allow to dynamically add sections or overwrite them....

Fixes https://github.com/skops-dev/skops/issues/184 PR which adds MethodType and related functions to the skops.io dispatch functions. I can expand on the test if more cases/checks are needed, but for now this shows...

Certain scipy functions cannot be loaded correctly. Here is a test to reproduce: ```python from scipy import stats def test_scipy_stats(tmp_path): estimator = FunctionTransformer(func=stats.zipf) save_load_round(estimator, tmp_path / "file.skops") ``` `zipf` is...

bug
persistence

This pull requests is an attempt towards addressing #65. Note that this is my first ever public contribution, so don't be too hard on me 😉 For `tabular-classification` and `tabular-regression`...

I realized we need to almost always remind external contributors to run black on their code. It would be nice to add black (or extra note about pre-commit hooks) to...

As discussed [here](https://github.com/huggingface/api-inference-community/issues/94), only run the slow inference API tests on main or when the PR title contains the word "inference". Addresses (though not really solves) #118. As always, these...

Addresses #138 ## Description The goal of this PR is to add an auditing feature which is used while an object is being loaded. Before the actual object is loaded,...

Before making a contribution to skops, it is best to coordinate with the maintainers. So when picking an existing issue, that should be clarified. When working on something new, an...

We should have convenience methods to convert scikit-learn fitted models to ONNX, and have easy ways to check if a model can be converted to ONNX. The https://github.com/onnx/sklearn-onnx project as...

persistence

logical updates to make codebase more pythonic. updates pre commit hook so that isort complies with black formatting standards, preventing potential issues