Skip to content
#

machinelearning

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 1,878 public repositories matching this topic...

homemade-machine-learning
alqbib
alqbib commented Mar 31, 2019

Vectorized version of gradient descent.

theta = theta * reg_param - alpha * (1 / num_examples) * (delta.T @ self.data).T

We should NOT regularize the parameter theta_zero.

theta[0] = theta[0] - alpha * (1 / num_examples) * (self.data[:, 0].T @ delta).T

the first code line ,theta include theta[0].
so I think can write like this:
theta[0] -= alpha * (1 / num_examples) * (self.data[:, 0].

ludwig
ZeroAurora
ZeroAurora commented Mar 6, 2020

Is your feature request related to a problem? Please describe.
Other related issues: #408 #251
I trained a Chinese model for spaCy, linked it to [spacy's package folder]/data/zh (using spacy link) and want to use that for ludwig. However, when I tried to set the config for ludwig, I received an error, which tell me that there is no way to load the Chinese model.

ValueError: Key ch
argenisleon
argenisleon commented Feb 22, 2020

Hi,
I am trying to load a CSV with no header using

df = vaex.open('data/star0000-1.csv',sep=",", header=None, error_bad_lines=False)

but I get

could not convert column 0, error: TypeError('getattr(): attribute name must be string'), will try to convert it to string
Giving up column 0, error: TypeError('getattr(): attribute name must be string')
could not convert column 
rth
rth commented Mar 5, 2020

Currently tslearn/tests/test_estimators.py redefine a custom check_estimator and then monkeypatch some of the tests in sklearn.utils.estimator_checks to work with time series data.

In the latest version scikit-learn introduced parametrize_with_checks which should allow to simplify this quite a bit https://scikit-learn.org/stable/developers/develop.html#rolling-your-own-estimator (e.g. a

📚 [.md & .ipynb] Series of Artificial Intelligence & Deep Learning, including Mathematics Fundamentals, Python Practices, NLP Application, etc. 💫 人工智能与深度学习实战,数理统计篇 | 机器学习篇 | 深度学习篇 | 自然语言处理篇 | 工具实践 Scikit & Tensoflow & PyTorch 篇 | 行业应用 & 课程笔记

  • Updated Mar 29, 2020
  • Jupyter Notebook
Wikipedia
Wikipedia
You can’t perform that action at this time.