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
{{ message }}
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
ML.NET was originally developed in Microsoft Research and is used across many product groups in Microsoft like Windows, Bing, PowerPoint, Excel and others. `nimbusml` was built to enable data science teams that are more familiar with Python to take advantage of ML.NET's functionality and performance.
6
6
7
-
This package enables training ML.NET pipelines or integrating ML.NET components directly into Scikit-Learn pipelines (it supports `numpy.ndarray`, `scipy.sparse_cst`, and `pandas.DataFrame` as inputs).
7
+
This package enables training ML.NET pipelines or integrating ML.NET components directly into [scikit-learn](https://scikit-learn.org/stable/) pipelines (it supports `numpy.ndarray`, `scipy.sparse_cst`, and `pandas.DataFrame` as inputs).
8
8
9
9
Documentation can be found [here](https://docs.microsoft.com/en-us/NimbusML/overview) and additional notebook samples can be found [here](https://github.com/Microsoft/NimbusML-Samples).
10
10
@@ -48,7 +48,7 @@ pipeline.fit(train_data)
48
48
results = pipeline.predict(test_data)
49
49
```
50
50
51
-
Instead of creating an `nimbusml` pipeline, you can also integrate components into Scikit-Learn pipelines:
51
+
Instead of creating an `nimbusml` pipeline, you can also integrate components into scikit-learn pipelines:
Copy file name to clipboardExpand all lines: src/python/docs/sphinx/concepts/experimentvspipeline.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ nimbusml.Pipeline() versus sklearn.Pipeline()
9
9
.. contents::
10
10
:local:
11
11
12
-
This sections highlights the differences between using a `sklearn.Pipeline <http://scikit-learn.org/stable/modules/generated/sklearn.pipeline.Pipeline.html>`_
12
+
This sections highlights the differences between using a `sklearn.Pipeline <https://scikit-learn.org/stable/modules/generated/sklearn.pipeline.Pipeline.html>`_
13
13
and :py:class:`nimbusml.Pipeline` to compose a sequence of transformers and/or trainers.
14
14
15
15
16
16
sklearn.Pipeline
17
17
----------------
18
18
19
19
``nimbusml`` transforms and trainers are designed to be compatible with
0 commit comments