Escribí un tutorial sobre el modelo de regresión lineal. Puedes encontrar el artículo acá: https://platzi.com/tutoriales/1766-regresion-python/11159-de-donde-viene-el-algoritmo-de-regresion-lineal/
Introducción a machine learning
Introducción a machine learning
Qué es machine learning y su historia
Framework de ciencia de datos: herramientas para machine learning
Tipos de modelos de machine learning
Reto: procesando un dataset
Algoritmos simples de machine learning
La “receta” para aplicar algoritmos de machine learning
Regresión lineal
Regresión logística
Árboles de decisión
Algoritmos de aprendizaje no supervisado
Reto: explora diferentes ejemplos de modelos y qué pueden hacer
Deep learning
Cómo funcionan las redes neuronales
Cómo es el entrenamiento de las redes neuronales
Cómo mejorar las predicciones de redes neuronales
Conclusiones
Qué más aprender de inteligencia artificial
Cómo profundizar en machine learning y deep learning
Aún no tienes acceso a esta clase
Crea una cuenta y continúa viendo este curso
Aportes 2
Preguntas 0
Escribí un tutorial sobre el modelo de regresión lineal. Puedes encontrar el artículo acá: https://platzi.com/tutoriales/1766-regresion-python/11159-de-donde-viene-el-algoritmo-de-regresion-lineal/
different parameters change what we think of a relation between input features (X) and the output target (y_pred).
y{pred}=w_1x+w_0_
w_1= a change in “x” means a change in "y"
w_0= the value of “y” if “x” is 0
The cost (E) is the difference between the target value (y_i) and our line predicted value (y_pred)
j\left(w,:w_0\right)=\frac{1}{N}\sum {i=1}^N:\left(y_i-y{i:pred}\right)^2
We want to minimize the distance (y_i pred) above each point on training data
We change w_0 and w_1 'til find a smaller distance sum is found
_update rule = min J(w_0, w_1) _
pd: i want to add the screenshot, but i don’t know why doesn’t let me, it pop up an error:
¿Quieres ver más aportes, preguntas y respuestas de la comunidad? Crea una cuenta o inicia sesión.