vktrbr / optimization_ml

Optimization in ML
MIT License
10 stars 1 forks source link

Python Packages #55

Closed tsoiadelina closed 2 years ago

tsoiadelina commented 2 years ago
Inputs (for each func)

Loss: image

L1: image

L2: image

  1. Make polynomial features with sklearn: PolynomialFeatures
  2. Make linear regression on this features
    • [x] Polynomial with L2

exponential:

Let's make THETA = [THETA0, *THETA1] is m dimensional vector-column. And try:

  1. minimize sse loss without logarithmic image
  2. minimize after logarithmic
    • [x] Exponential with L1
    • [x] Exponential with L2

image

tsoiadelina commented 2 years ago

How should I use methods here?

vktrbr commented 2 years ago

algorithms