Skip to content

Instantly share code, notes, and snippets.

View pnavaro's full-sized avatar

Pierre Navaro pnavaro

View GitHub Profile
@pnavaro
pnavaro / test_loadsave.jl
Created January 20, 2020 15:48
Save a problem with Julia with JLD
using JLD
abstract type AbstractSolver end
struct RK4 <: AbstractSolver
param
end
struct Problem
@pnavaro
pnavaro / coordinate_descent.jl
Last active September 29, 2019 18:29
Lasso Regression : Coordinate descent
# # Algorithm
#
# $$
# \mathbf{x}^{(0)} = (x_1^0,...,x_n^0)
# $$
#
# $$
# \mathbf{x}_i^{(k+1)} = argmin_{\omega} f(x_1^{(k+1)}, ..., x_{i-1}^{(k+1)}, \omega, x_{i+1}^{(k)}, ..., x_n^{(k)})
# $$
#
@pnavaro
pnavaro / polyglot-ds-prep.ipynb
Created April 22, 2018 06:15 — forked from fperez/README.md
Polyglot Data Science with IPython
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.