short_notes_on_machine_learning icon indicating copy to clipboard operation
short_notes_on_machine_learning copied to clipboard

Notes On Using Data Science & Artificial Intelligence To Fight For Something That Matters.

Results 102 short_notes_on_machine_learning issues
Sort by recently updated
recently updated
newest added

-> Code Tutorials -> Machine Learning -> Basics -> [Perceptron In Scikit] -> Train A Perceptron Learner "ppn = Perceptron(n_iter=40, eta0=0.1, random_state=0)" we can change "n_iter" into "n_iter_no_change"

with [opencv-python](https://pypi.org/project/opencv-python/) you can just pip install opencv-python

IsolationForest( *, n_estimators=100, max_samples='auto', contamination='auto', max_features=1.0, bootstrap=False, n_jobs=None, random_state=None, verbose=0, warm_start=False, )

ppn = Perceptron(~~n_iter~~=40, eta0=0.1, random_state=0)

In 'Preprocessing Dates And Times'>'Break Up Dates And Times Into Multiple Features': `df['date'] = pd.date_range('1/1/2001', periods=150, freq='W')` Here periods should be equal to 5 rather than 150 as per the...

your code gets AttributeError: 'NoneType' object has no attribute 'split'

Hi, Chris. Your comment on the "n_redudant" parameter seems to be inaccurate. It says: # five features that are random and *unrelated to the output's classes* Actually, from what I...

It's more helpful to show how to rename columns that already have their names. It's not done using a list, but rather using a dictionary with `keys` being current names...

In the note titled "Visualize Neural Network Architecutre", "Architecutre" should be replaced with "Architecture".