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
scikit-learn tries to provide a unified API for the basic tasks in machine
112
113
learning, with pipelines and meta-algorithms like grid search to tie
@@ -124,16 +125,20 @@ do structured prediction:
124
125
approximate inference; defines the notion of sample as an instance of
125
126
the graph structure)
126
127
127
-
* `seqlearn <http://larsmans.github.io/seqlearn/>`_ handles sequences only (focuses on
128
-
exact inference; has HMMs, but mostly for the sake of completeness;
129
-
treats a feature vector as a sample and uses an offset encoding for
130
-
the dependencies between feature vectors)
128
+
* `seqlearn <http://larsmans.github.io/seqlearn/>`_ handles sequences only
129
+
(focuses on exact inference; has HMMs, but mostly for the sake of
130
+
completeness; treats a feature vector as a sample and uses an offset encoding
131
+
for the dependencies between feature vectors)
131
132
132
133
Will you add GPU support?
133
-
--------------------------
134
-
No, or at least not in the near future. The main reason is that GPU support will introduce many software dependencies and introduce platform specific issues.
135
-
scikit-learn is designed to be easy to install on a wide variety of platforms.
136
-
Outside of neural networks, GPUs don't play a large role in machine learning today, and much larger gains in speed can often be achieved by a careful choice of algorithms.
134
+
-------------------------
135
+
136
+
No, or at least not in the near future. The main reason is that GPU support
137
+
will introduce many software dependencies and introduce platform specific
138
+
issues. scikit-learn is designed to be easy to install on a wide variety of
139
+
platforms. Outside of neural networks, GPUs don't play a large role in machine
140
+
learning today, and much larger gains in speed can often be achieved by a
141
+
careful choice of algorithms.
137
142
138
143
Do you support PyPy?
139
144
--------------------
@@ -190,3 +195,48 @@ DBSCAN with Levenshtein distances::
190
195
191
196
Similar tricks can be used, with some care, for tree kernels, graph kernels,
192
197
etc.
198
+
199
+
200
+
Why do I sometime get a crash/freeze with n_jobs > 1 under OSX or Linux?
0 commit comments