-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
102 additions
and
55 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
|
||
build_training_set(data, func) | ||
rename build_dataset | ||
|
||
build_training_set_fmultipleparams(data,func) | ||
rename build_dataset_fmultiparams | ||
|
||
target_vector(t_set) | ||
rename target_vector(dataset) | ||
|
||
input_data_matrix(t_set) | ||
rename data_matrix(dataset) | ||
|
||
utils_math: | ||
------------------------------------------------ | ||
randomline() | ||
rename random_line_coefs | ||
|
||
target_function(coords) | ||
rename linear_function(coefs) | ||
|
||
target_random_function(coords) | ||
rename random_function()... | ||
|
||
signex(x,compare_to = 0) | ||
delete use sign with an alias | ||
|
||
sign(x,compare_to = 0) | ||
map_point(point,f) | ||
rename get_sign(point,f) | ||
|
||
map_point_fmultipleparams(point,f) | ||
get_sign_multiparam | ||
|
||
pseudo_inverse(X) | ||
check if needed | ||
|
||
linear_regression(N_points,t_set,lda = 1.0) | ||
|
||
linear_regression_lda(N_points,t_set,lda) | ||
|
||
utils_print: | ||
----------------------------------------------- | ||
print_avg(name,vector) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[email protected].401 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
|
||
|
||
utils_data: | ||
------------------------------------------------- | ||
data_interval(low_b,high_b,N=100) | ||
rename with random_values(low_b,high_b,size) | ||
|
||
data(N = 10) | ||
rename with random_points(size) | ||
|
||
data_from_file(filepath) | ||
rename dataset_from_file | ||
|
||
build_training_set(data, func) | ||
rename build_dataset | ||
|
||
build_training_set_fmultipleparams(data,func) | ||
rename build_dataset_fmultiparams | ||
|
||
target_vector(t_set) | ||
rename target_vector(dataset) | ||
|
||
input_data_matrix(t_set) | ||
rename data_matrix(dataset) | ||
|
||
utils_math: | ||
------------------------------------------------ | ||
randomline() | ||
rename random_line_coefs | ||
|
||
target_function(coords) | ||
rename linear_function(coefs) | ||
|
||
target_random_function(coords) | ||
rename random_function()... | ||
|
||
signex(x,compare_to = 0) | ||
delete use sign with an alias | ||
|
||
sign(x,compare_to = 0) | ||
map_point(point,f) | ||
rename get_sign(point,f) | ||
|
||
map_point_fmultipleparams(point,f) | ||
get_sign_multiparam | ||
|
||
pseudo_inverse(X) | ||
check if needed | ||
|
||
linear_regression(N_points,t_set,lda = 1.0) | ||
|
||
linear_regression_lda(N_points,t_set,lda) | ||
|
||
utils_print: | ||
----------------------------------------------- | ||
print_avg(name,vector) |