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
<p>Dask-ML scales machine learning APIs like Scikit-Learn and XGBoost to enable scalable training and prediction on large models and large datasets.</p>
136
+
<p>Dask-ML scales machine learning APIs like scikit-learn and XGBoost to enable scalable training and prediction on large models and large datasets.</p>
137
137
<p>
138
138
<aclass="btn btn-outline-secondary" href="https://ml.dask.org/" role="button">Learn More »</a>
139
139
<aclass="btn btn-secondary" href="https://mybinder.org/v2/gh/dask/dask-examples/main?urlpath=lab/tree/machine-learning.ipynb" role="button">Try Now »</a>
<h2class="featurette-heading">Familiar for Python users</h2>
152
152
<h2class="featurette-subheading">and easy to get started</h2>
153
-
<pclass="lead">Dask uses existing Python APIs and data structures to make it easy to switch between Numpy, Pandas, Scikit-learn to their Dask-powered equivalents.</>
153
+
<pclass="lead">Dask uses existing Python APIs and data structures to make it easy to switch between NumPy, pandas, scikit-learn to their Dask-powered equivalents.</>
154
154
<pclass="lead">You don't have to completely rewrite your code or retrain to scale up.</p>
155
155
<aclass="btn btn-secondary" href="https://docs.dask.org/en/latest/api.html" role="button">Learn About Dask APIs »</a>
156
156
</div>
157
157
158
158
<divclass="col-md-5 code-block">
159
-
<pre><codeclass="language-python"># Arrays implement the Numpy API
159
+
<pre><codeclass="language-python"># Arrays implement the NumPy API
160
160
import dask.array as da
161
161
x = da.random.random(size=(10000, 10000),
162
162
chunks=(1000, 1000))
163
163
x + x.T - x.mean(axis=0)</code></pre>
164
164
165
-
<pre><codeclass="language-python"># Dataframes implement the Pandas API
165
+
<pre><codeclass="language-python"># Dataframes implement the pandas API
0 commit comments