User Tools

Site Tools


network_stuff:machine_learning:supervised_learning

This is an old revision of the document!


SUPERVISED LEARNING:
In python, we use the method fit to train a model. Fit~train

kmeans.fit(argument)    
kmeans.predict (argument)    # ython predict() predicts the labels of the data values based on the trained model.


REGRESSION
For continuous tgt values


DECISON TRESS

  • k-nearest neighbors
    • ~ “classification by proximity”
    • after doing it with all points, it creates a “boundary” (ie classification)
  • decision trees
    • we ask question to narrow down areas (normally y/n Qs)
  • random forests(?)
network_stuff/machine_learning/supervised_learning.1685552896.txt.gz · Last modified: (external edit)