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
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,8 @@ Some examples of how Sequentia can be used on sequence data include:
58
58
59
59
-**Simplicity and interpretability**: Sequentia offers a limited set of machine learning algorithms, chosen specifically to be more interpretable and easier to configure than more complex alternatives such as recurrent neural networks and transformers, while maintaining a high level of effectiveness.
60
60
-**Familiar and user-friendly**: To fit more seamlessly into the workflow of data science practitioners, Sequentia follows the ubiquitous Scikit-Learn API, providing a familiar model development process for many, as well as enabling wider access to the rapidly growing Scikit-Learn ecosystem.
61
+
-**Speed**: Some algorithms offered by Sequentia naturally have restrictive runtime scaling, such as k-nearest neighbors. However, our implementation is
62
+
optimized to the point of being multiple orders of magnitude faster than similar packages — see the [Benchmarks](#benchmarks) section for more information.
61
63
62
64
## Build Status
63
65
@@ -82,7 +84,7 @@ effective inference algorithm.
82
84
-[x] Sakoe–Chiba band global warping constraint
83
85
-[x] Dependent and independent feature warping (DTWD/DTWI)
For optimal performance when using any of the k-NN based models, it is important that the correct `dtaidistance` C libraries are accessible.
177
179
178
-
Please see the [`dtaidistance` installation guide](https://dtaidistance.readthedocs.io/en/latest/usage/installation.html) for troubleshooting if you run into C compilation issues, or if setting `use_c=True` on k-NN based models results in a warning.
180
+
Please see the [`dtaidistance` installation guide](https://dtaidistance.readthedocs.io/en/latest/usage/installation.html) for troubleshooting if you run into C compilation issues, or if using k-NN based models with `use_c=True` results in a warning.
179
181
180
182
You can use the following to check if the appropriate C libraries are available.
181
183
@@ -184,6 +186,8 @@ from dtaidistance import dtw
184
186
dtw.try_import_c()
185
187
```
186
188
189
+
If these libraries are unavailable, Sequentia will fall back to using a Python alternative.
190
+
187
191
### Development
188
192
189
193
Please see the [contribution guidelines](/CONTRIBUTING.md) to see installation instructions for contributing to Sequentia.
0 commit comments