Skip to content

Instantly share code, notes, and snippets.

View rosdyana's full-sized avatar
💭
I may be slow to respond.

Rosdyana Kusuma rosdyana

💭
I may be slow to respond.
View GitHub Profile
@rosdyana
rosdyana / growth_of_machine_learning.MD
Created April 9, 2017 15:44
Growth of Machine Learning

Growth of Machine Learning


Machine learning is preferred approach to

  • Speech recognition , Natural language processing
  • Computer vision
  • Medical outcomes analysis
  • Robot control
  • Computational biology
  • Sensor networks
@rosdyana
rosdyana / s1056035_HW_1_BDA.R
Created April 9, 2017 10:07
s1056035_HW_1_BDA
#!/usr/bin/Rscript
# Name : Rosdyana Kusuma
# Student ID : s1056035
# mail : [email protected] , [email protected]
# site : rosdyanakusuma.com
# read input data.
dataInput = read.csv("input.csv", header=F , sep=",")
# create confusion matrix.
@rosdyana
rosdyana / un_supervised_ML.MD
Last active April 9, 2017 15:37
Supervised - Unsupervised Machine Learning

Supervised

  • All data is labeled and the algorithms learn to predict the output from the input data.
  • Classification , Regression
  • Linear regression and classification , Random forest , Support vector machine , Bayesian, Neural networks

Unsupervised

  • All data is unlabeled and the algorithms learn to inherent structure from the input data.
  • Clusterring, Association
  • K-means , Apriori Algorithm

Semi-supervised

  • Some data is labeled but most of it is unlabeled and a mixture of supervised and unsupervised techniques can be used.