Skip to content
#

machine-learning-algorithms

Machine learning is the practice of teaching a computer to learn. The concept uses pattern recognition, as well as other forms of predictive algorithms, to make judgments on incoming data. This field is closely related to artificial intelligence and computational statistics.

Here are 3,651 public repositories matching this topic...

Stoneww
Stoneww commented Dec 26, 2018

Describe the bug
can't find "from sklearn.cross_validation import train_test_split" in Latest version scikit-learn
To Reproduce
Steps to reproduce the behavior:

  • Day1
  • Step 5: Splitting the datasets into training sets and Test sets
  • Can't find "from sklearn.cross_validation import train_test_split" in Latest version scikit-learn**

**Desktop (please complete the following infor

kenkaigu
kenkaigu commented Aug 5, 2019

My feature request is to include an option on a button made from choice skill, to redirect a link to an external url...

Here's a detailed explanation including screenshots

https://help.botpress.io/t/how-to-redirect-to-an-external-url-while-using-a-button-made-in-choice-skill/1791

This option will be really beneficial using choice skill buttons since at the moment, you can only add an ext

StrikerRUS
StrikerRUS commented Oct 18, 2019

I'm sorry if I missed this functionality, but CLI version hasn't it for sure (I saw the related code only in generate_code_examples.py). I guess it will be very useful to eliminate copy-paste phase, especially for large models.

Of course, piping is a solution, but not for development in Jupyter Notebook, for example.

adam2392
adam2392 commented Feb 8, 2020

Describe the bug
TimeSeriesScalerMeanVariance returns 3 dimensions, when the data matrix (N x T) is 2 dimensions.

To Reproduce

X = np.random.random((87,120))
print(X.shape)
X = TimeSeriesScalerMeanVariance().fit_transform(X)
print(X.shape)

Expected behavior
It should be squeezed, or at least better documentation.

Additional context
Happy to submit a PR

bug
zbrasseaux
zbrasseaux commented Jan 24, 2020

All of my relevant code:

#!/usr/bin/env python3.5

from data_generator import data_generator as dg

# standard imports
from keras.models import load_model
from keras.utils import to_categorical
from keras.wrappers.scikit_learn import KerasClassifier
from os import listdir
import pandas as pd
import numpy as np
from modAL.models import ActiveLearner

######## NEW STUFF ##
Wikipedia
Wikipedia
You can’t perform that action at this time.