-
Updated
Feb 1, 2022 - Python
classification
Here are 8,214 public repositories matching this topic...
-
Updated
Nov 2, 2021 - Python
-
Updated
Jan 20, 2022 - Jupyter Notebook
-
Updated
Jan 25, 2022 - Python
-
Updated
Dec 17, 2021
-
Updated
Feb 9, 2022 - Java
Describe the bug
Unable to read data from a web location using address filed
To Reproduce
from pycaret.datasets import get_data
data = get_data(
"economic_indicators_all_ex_3mo_china_inc_treas3mo",
address="https://raw.githubusercontent.com/ngupta23/DS6373_TimeSeries/2b40f0071c3b7ec6a05dc0106f64e041f8cbaaef/Projects/gdp_prediction/data/",
) -
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 31, 2020 - Python
-
Updated
May 19, 2019 - Python
-
Updated
Oct 28, 2021 - JavaScript
-
Updated
Nov 9, 2021 - Python
-
Updated
Feb 9, 2022 - Python
-
Updated
Feb 9, 2022 - Python
-
Updated
Feb 4, 2022 - Python
-
Updated
Jan 18, 2022 - Java
-
Updated
Dec 14, 2021 - Python
-
Updated
Jan 26, 2022 - Jupyter Notebook
-
Updated
Feb 9, 2022
-
Updated
May 16, 2020 - Python
-
Updated
Feb 9, 2022 - Go
-
Updated
Aug 16, 2021 - Python
-
Updated
Jul 8, 2021 - Python
-
Updated
Feb 9, 2022 - Python
-
Updated
Oct 1, 2020 - Jupyter Notebook
In principle it seems getting the parameters from FLAML to C# LightGBM seems to work, but I dont have any metrics yet. The names of parameters are slightly different but documentation is adequate to match them. Microsoft.ML seems to have version 2.3.1 of LightGBM.
Another approach that might be useful, especially for anyone working with .NET, would be having some samples about conversion to ONN
-
Updated
Feb 10, 2022 - Jupyter Notebook
-
Updated
Apr 5, 2020 - Python
Add a way to change the sample id output in the annotation process to a specific number (see picture).
Reason: I want to annotate large text and the app don't like it when the documents to annotate are too large, so I spitted in a sentence the document but I would like to be able to
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."

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)))