-
Updated
Aug 8, 2022 - Python
classification
Here are 9,251 public repositories matching this topic...
-
Updated
Aug 1, 2022 - Python
-
Updated
Jul 5, 2022 - Python
-
Updated
May 16, 2022 - Jupyter Notebook
-
Updated
Dec 17, 2021
Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))
-
Updated
May 20, 2022 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
Aug 5, 2022 - Python
-
Updated
Nov 9, 2021 - Python
#306 adds static type checking; it would be nice to switch over to mypy strict mode (--strict) once we have full coverage with type annotations.
-
Updated
May 19, 2019 - Python
-
Updated
Jun 12, 2022 - JavaScript
-
Updated
Aug 9, 2022 - Python
-
Updated
Aug 9, 2022 - Python
-
Updated
Jul 21, 2022 - Java
-
Updated
Jul 4, 2022 - Python
-
Updated
Aug 9, 2022 - Go
-
Updated
Jun 21, 2022 - Jupyter Notebook
-
Updated
May 16, 2020 - Python
-
Updated
Jul 6, 2022 - Jupyter Notebook
-
Updated
Jul 4, 2022 - Python
-
Updated
Jul 8, 2021 - Python
I published a new v0.1.12 release of HCrystalBall, that updated some package dependencies and fixed some bugs in cross validation.
Should the original pin for 0.1.10 be updated? Unfortunately won't have time soon to submit a PR for this.
-
Updated
Aug 16, 2021 - Python
-
Updated
Oct 1, 2020 - Jupyter Notebook
-
Updated
Jun 27, 2022 - Python
-
Updated
Jul 8, 2022 - Jupyter Notebook
Improve this page
Add a description, image, and links to the classification topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the classification topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
In time series plotting module, lot of plots are customized at the end - template, fig size, etc. Since the same code is repeated in all these plots, maybe this could be modularized and reused.