All Projects → joshday → SparseRegression.jl

joshday / SparseRegression.jl

Licence: other
Statistical Models with Regularization in Pure Julia

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to SparseRegression.jl

L0Learn
Efficient Algorithms for L0 Regularized Learning
Stars: ✭ 74 (+100%)
Mutual labels:  regularization, sparse-regression
Statistical-Learning-using-R
This is a Statistical Learning application which will consist of various Machine Learning algorithms and their implementation in R done by me and their in depth interpretation.Documents and reports related to the below mentioned techniques can be found on my Rpubs profile.
Stars: ✭ 27 (-27.03%)
Mutual labels:  statistical-learning, regularization
Jupyter-Notebooks-Statistic-Walk-Throughs-Using-R
Jupyter notebooks with examples of statistical methods and analyses using R.
Stars: ✭ 21 (-43.24%)
Mutual labels:  statistical-learning, statistical-models
ahead
Univariate and multivariate time series forecasting
Stars: ✭ 15 (-59.46%)
Mutual labels:  statistical-learning
ANTsR
Advanced Normalization Tools in R
Stars: ✭ 101 (+172.97%)
Mutual labels:  statistical-learning
ISLR-Python
Notes and implementations in Python for ISLR.
Stars: ✭ 14 (-62.16%)
Mutual labels:  statistical-learning
M2cgen
Transform ML models into a native code (Java, C, Python, Go, JavaScript, Visual Basic, C#, R, PowerShell, PHP, Dart, Haskell, Ruby, F#, Rust) with zero dependencies
Stars: ✭ 1,962 (+5202.7%)
Mutual labels:  statistical-learning
GDLibrary
Matlab library for gradient descent algorithms: Version 1.0.1
Stars: ✭ 50 (+35.14%)
Mutual labels:  statistical-learning
Statistical Learning Method
《统计学习方法》笔记-基于Python算法实现
Stars: ✭ 1,643 (+4340.54%)
Mutual labels:  statistical-learning
BayesHMM
Full Bayesian Inference for Hidden Markov Models
Stars: ✭ 35 (-5.41%)
Mutual labels:  statistical-learning
sldm4-h2o
Statistical Learning & Data Mining IV - H2O Presenation & Tutorial
Stars: ✭ 26 (-29.73%)
Mutual labels:  statistical-learning
JCLAL
JCLAL is a general purpose framework developed in Java for Active Learning.
Stars: ✭ 22 (-40.54%)
Mutual labels:  statistical-learning
Islr Python
An Introduction to Statistical Learning (James, Witten, Hastie, Tibshirani, 2013): Python code
Stars: ✭ 3,344 (+8937.84%)
Mutual labels:  statistical-learning
BoostSRL
BoostSRL: "Boosting for Statistical Relational Learning." A gradient-boosting based approach for learning different types of SRL models.
Stars: ✭ 31 (-16.22%)
Mutual labels:  statistical-learning
Esl Cn
The Elements of Statistical Learning (ESL)的中文翻译、代码实现及其习题解答。
Stars: ✭ 1,855 (+4913.51%)
Mutual labels:  statistical-learning
data-science
Lecture Slides for Introduction to Data Science
Stars: ✭ 22 (-40.54%)
Mutual labels:  statistical-learning
An Introduction To Statistical Learning
This repository contains the exercises and its solution contained in the book "An Introduction to Statistical Learning" in python.
Stars: ✭ 1,843 (+4881.08%)
Mutual labels:  statistical-learning
r4sl
📈 Machine Learning from the perspective of a Statistician using R
Stars: ✭ 63 (+70.27%)
Mutual labels:  statistical-learning
A- Guide -to Data Sciecne from mathematics
It is a blueprint to data science from the mathematics to algorithms. It is not completed.
Stars: ✭ 25 (-32.43%)
Mutual labels:  statistical-learning
deep-learning-notes
🧠👨‍💻Deep Learning Specialization • Lecture Notes • Lab Assignments
Stars: ✭ 20 (-45.95%)
Mutual labels:  regularization

SparseRegression

Documentation Master Build Test Coverage
Build Status Build status codecov

This package relies on primitives defined in the JuliaML ecosystem to implement high-performance algorithms for linear models which often produce sparsity in the coefficients.

Quickstart

using Pkg
Pkg.add("SparseRegression")
using SparseRegression

x = randn(10_000, 50)
y = x * range(-1, stop=1, length=50) + randn(10_000)

s = SModel(x, y, L2DistLoss(), L2Penalty())
@time learn!(s)
s
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].