MLLOG


A Machine Learning Craftsmanship Blog

Machine Learning Test

Problem 2

Machine Learning Engineer Test - Problem 2 %matplotlib inline from keras.preprocessing.text import Tokenizer import numpy as np import pandas as pd from sklearn.decomposition import PCA import matplotlib.pyplot as plt from sklearn.model_selection import StratifiedKFold from sklearn.linear_model import LinearRegression, LogisticRegression, PassiveAggressiveClassifier from sklearn.tree import DecisionTreeClassifier from sklearn import svm from sklearn.ensemble import... [Read More]

Machine Learning Test

Problem 1

Machine Learning Engineer Test - Problem 1 %matplotlib inline from keras.preprocessing.text import Tokenizer import numpy as np import pandas as pd from sklearn.decomposition import PCA import matplotlib.pyplot as plt from sklearn.model_selection import StratifiedKFold from sklearn.linear_model import LinearRegression, LogisticRegression, PassiveAggressiveClassifier from sklearn.tree import DecisionTreeClassifier from sklearn import svm from sklearn.ensemble import... [Read More]

Machine Learning Journey

My journey in Machine Learning

In this post I want to share my notebooks that I created along with my journey in Machine Learning. The notebooks are about variety things in Machine Learning including my learning about some libraries, my codes for some ML courses and even there are notebooks for some Kaggle Competitions. All... [Read More]

Python Machine Learning - Chapter 2

Training ML Algorithms for Classification

1. Implementing a perceptron learning algorithm in Python Perceptron is on of the first algorithmically described machine learning algorithms for classification - Definition: perceptron is an algorithm for supervised learning of binary classifiers: a function that maps its input $x$ (a real-valued vector) to an output value (a single binary... [Read More]
Tags: machine learning

Machine Learning là gì?

Các định nghĩa khác nhau về Machine Learning

Chúng ta đã nghe rất nhiều về “Machine Learning”, đặc biệt là những năm gần đây “Machine Learning” đang trở thành topic “hot” nhất không chỉ trong nghiên cứu mà trong cả industry. Vậy “Machine Learning” là gì mà nó lại trở nên nổi tiếng như vậy, bài viết này... [Read More]
Tags: machine learning, definition