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,928 public repositories matching this topic...
machine learning and deep learning tutorials, articles and other resources
-
Updated
Apr 26, 2020
Visualizer for neural network, deep learning and machine learning models
-
Updated
Jun 13, 2020 - JavaScript
Example scripts contains some dependencies not listed for Horovod, and in some cases require datasets without explaining how to obtain them. We should provide a README file along with a set of packages (requirements.txt) for successfully running the examples.
深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework.
-
Updated
Jun 9, 2020 - Jupyter Notebook
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
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
My blogs and code for machine learning. http://cnblogs.com/pinard
-
Updated
Jul 12, 2019 - Jupyter Notebook
Fix Video
RE: nswfjs.com - Looks like video might have broke and no tests caught it.
Code: https://github.com/infinitered/nsfwjs/tree/master/example/nsfw_demo
Fix, and fix tests.
深度学习入门教程, 优秀文章, Deep Learning Tutorial
-
Updated
Dec 5, 2019 - Jupyter Notebook
How to use Watcher / WatcherClient over tcp/ip network?
Watcher seems to ZMQ server, and WatcherClient is ZMQ Client, but there is no API/Interface to config server IP address.
Do I need to implement a class that inherits from WatcherClient?
Machine learning resources
-
Updated
Apr 9, 2019
-
Updated
May 5, 2020 - JavaScript
a step-by-step guide
Hi, it is a nice work to learning machine learning and I like it very much. I am new to HTML and JS, can you give a step-by-step guide to install, train and play this game?
TRAINS - Auto-Magical Experiment Manager & Version Control for AI - NOW WITH AUTO-MAGICAL DEVOPS!
-
Updated
Jun 13, 2020 - Python
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
An offline recommender system backend based on collaborative filtering written in Go
-
Updated
May 18, 2020 - Go
A curated list of awesome anomaly detection resources
-
Updated
Jun 4, 2020
An open-source framework for real-time anomaly detection using Python, ElasticSearch and Kibana
-
Updated
Mar 31, 2020 - Python
-
Updated
Jun 13, 2020 - Jupyter Notebook
A uniform interface to run deep learning models from multiple frameworks
-
Updated
Jun 10, 2020 - C++
でぃーぷらーにんぐを無限にやってディープラーニングでDeepLearningするための実装CheatSheet
-
Updated
Jun 7, 2020 - Jupyter Notebook
Typos in readme.md
Enable the ability to ask if we should preload weights/start from original model etc.
This would be much nicer.
Use some good UI stuff like https://github.com/Mckinsey666/bullet
Tree LSTM implementation in PyTorch
-
Updated
Sep 30, 2019 - Python
A simple python OCR engine using opencv
-
Updated
Mar 17, 2019 - Python
As outlined in #16, it's often useful to extend fine-grained control of sharding to the user. It can be solved by wrapping integers with an identity hash function, but that seems less than ideal. It might be useful to provide this functionality as part of bigslice.Reshuffle.
Machine Learning Lectures at the European Space Agency (ESA) in 2018
-
Updated
Feb 17, 2020 - Jupyter Notebook
- Wikipedia
- Wikipedia



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].