Skip to content

Instantly share code, notes, and snippets.

@nmayorov
nmayorov / GSOC_proposal.md
Created March 9, 2015 11:59
GSOC Proposal

Improve nonlinear least squares minimization functionality in SciPy

Suborganization: scipy

Student information

Name: Nikolay Mayorov e-mail: n59_ru@hotmail.com github: nmayorov

@nmayorov
nmayorov / GSOC proposal v2.md
Created March 15, 2015 21:07
GSOC Proposal v.2

Improve nonlinear least squares minimization functionality in SciPy

Suborganization: scipy

Student information

Name: Nikolay Mayorov e-mail: n59_ru@hotmail.com github: nmayorov

@nmayorov
nmayorov / GSOC_proposal_v2
Last active August 29, 2015 14:17
GSOC Proposal v.2
# Improve nonlinear least squares minimization functionality in SciPy
## Suborganization: scipy
## Student information
**Name**: Nikolay Mayorov
**e-mail**: n59_ru@hotmail.com
**github**: nmayorov
@nmayorov
nmayorov / GSOC Proposal v. 3
Created March 23, 2015 13:55
GSOC Proposal v.3
# Improve nonlinear least squares minimization functionality in SciPy
## Suborganization: scipy
## Student information
**Name**: Nikolay Mayorov
**e-mail**: n59_ru@hotmail.com
**github**: nmayorov
@nmayorov
nmayorov / GSOC_proposal_v3.md
Created March 23, 2015 13:56
GSOC Proposal v.3

Improve nonlinear least squares minimization functionality in SciPy

Suborganization: scipy

Student information

Name: Nikolay Mayorov e-mail: n59_ru@hotmail.com github: nmayorov

@nmayorov
nmayorov / rosenbrock_leastsqbound.py
Created June 26, 2015 15:56
leastsqbound on Rosenbrock function with a single bound
from __future__ import print_function
import numpy as np
from leastsqbound import leastsqbound
def fun(x):
return np.array([10 * (x[1] - x[0]**2), (1 - x[0])])
@nmayorov
nmayorov / bundle_adjustment_scipy.ipynb
Last active September 19, 2021 02:52
Large scale bundle adjustment in scipy
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nmayorov
nmayorov / robust_regression.ipynb
Last active March 2, 2022 06:46
Robust nonlinear regression in scipy
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nmayorov
nmayorov / feature_selection_comparison.py
Created November 25, 2015 22:49
Comparison of different feature selection methods
import numpy as np
import matplotlib.pyplot as plt
from sklearn.datasets import (load_digits, load_breast_cancer,
load_diabetes, load_boston)
from sklearn.linear_model import RidgeCV
from sklearn.preprocessing import minmax_scale
from sklearn.model_selection import cross_val_score
from sklearn.feature_selection import (SelectKBest, MutualInfoSelector,
f_classif, f_regression)
from sklearn.svm import LinearSVC
@nmayorov
nmayorov / feature_selection_pipeline.py
Created November 26, 2015 13:09
Comparison of different feature selection methods with pipeline
import numpy as np
import matplotlib.pyplot as plt
from sklearn.datasets import (load_digits, load_breast_cancer,
load_diabetes, load_boston)
from sklearn.linear_model import RidgeCV
from sklearn.preprocessing import minmax_scale
from sklearn.model_selection import cross_val_score
from sklearn.feature_selection import (SelectKBest, MutualInfoSelector,
f_classif, f_regression)
from sklearn.svm import LinearSVC