Name: Nikolay Mayorov e-mail: [email protected] github: nmayorov
Name: Nikolay Mayorov e-mail: [email protected] github: nmayorov
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Improve nonlinear least squares minimization functionality in SciPy | |
## Suborganization: scipy | |
## Student information | |
**Name**: Nikolay Mayorov | |
**e-mail**: [email protected] | |
**github**: nmayorov |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Improve nonlinear least squares minimization functionality in SciPy | |
## Suborganization: scipy | |
## Student information | |
**Name**: Nikolay Mayorov | |
**e-mail**: [email protected] | |
**github**: nmayorov |
Name: Nikolay Mayorov e-mail: [email protected] github: nmayorov
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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])]) | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
OlderNewer