Machine learning
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 36,057 public repositories matching this topic...
Small thing, but costed me several hours to find :)
In the documentation example of Siamese mnist .
We see a code for contrastive loss, based on a paper. But the labels in this function are reversed from
the paper. Meaning in the paper Y=0 if X1,X2 are from same domain, Y=1 other
scikit-learn: machine learning in Python
-
Updated
Dec 2, 2019 - Python
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2)
-
Updated
Dec 2, 2019 - Jupyter Notebook
Repro:
@torch.jit.script
class Timebase:
def __init__(
self,
numerator, # type: int
denominator, # type: int
):
# type: (...) -> None
self.numerator = numerator # type: int
self.denominator = denominator # type: int
Produces the error:
RuntimeError: Return type line '# type: (...) -> ...' not found on multiline
Short description
I am trying to train Tesseract on Akkadian language. The language-specific.sh script was modified accordingly. When converting the training text to TIFF images, the text2image program crashes.
Environment
- Tesseract Version: 3.04.01
- Commit Number: the standard package in Ubuntu, package version 3.04.01-4, commit unknown
- Platform: Linux ubuntu
The world's simplest facial recognition api for Python and the command line
-
Updated
Dec 2, 2019 - Python
Caffe: a fast open framework for deep learning.
-
Updated
Dec 2, 2019 - C++
100 Days of ML Coding
-
Updated
Dec 2, 2019 - Python
The Julia Language: A fresh approach to technical computing.
-
Updated
Dec 2, 2019 - Julia
A complete daily plan for studying to become a machine learning engineer.
-
Updated
Dec 2, 2019
📚 A practical approach to machine learning to enable everyone to learn, explore and build.
-
Updated
Dec 2, 2019 - Jupyter Notebook
The most cited deep learning papers
-
Updated
Dec 2, 2019 - TeX
A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in python using Scikit-Learn and TensorFlow.
-
Updated
Dec 2, 2019 - Jupyter Notebook
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.
-
Updated
Dec 2, 2019 - Python
Microsoft Cognitive Toolkit (CNTK), an open source deep-learning toolkit
-
Updated
Dec 2, 2019 - C++
The fastai deep learning library, plus lessons and tutorials
-
Updated
Dec 2, 2019 - Jupyter Notebook
OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation
-
Updated
Dec 2, 2019 - C++
💫 Industrial-strength Natural Language Processing (NLP) with Python and Cython
-
Updated
Dec 2, 2019 - Python
100-Days-Of-ML-Code中文版
-
Updated
Dec 2, 2019 - Jupyter Notebook
Oxford Deep NLP 2017 course
-
Updated
Dec 2, 2019
A curated list of awesome Deep Learning tutorials, projects and communities.
-
Updated
Dec 2, 2019
List of Computer Science courses with video lectures.
-
Updated
Dec 2, 2019
Machine Learning From Scratch. Bare bones NumPy implementations of machine learning models and algorithms with a focus on accessibility. Aims to cover everything from linear regression to deep learning.
-
Updated
Dec 2, 2019 - Python
Bitmap & tilemap generation from a single example with the help of ideas from quantum mechanics.
-
Updated
Dec 2, 2019 - C#
In tensorflow website, it describes tf.losses.cosine_simialrity as follows:
Note that it is a negative quantity between -1 and 0, where 0 indicates orthogonality and values closer to -1 indicate greater similarity.
In fact, the quantity is from 1. to -1., it just takes a negative from normal cosine_similarity.
The page is at
https://tensorflow.google.cn/api_docs/python/tf/keras/losses/cosine_