Skip to content

Commit

Permalink
Fixed typos in comments to set_*_scaling_params
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuszka committed Aug 23, 2014
1 parent 94423e8 commit f057eff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/include/fann_train.h
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ FANN_EXTERNAL void FANN_API fann_descale_train( struct fann *ann, struct fann_tr
Calculate input scaling parameters for future use based on training data.
Parameters:
ann - ann for wgich parameters needs to be calculated
ann - ann for which parameters needs to be calculated
data - training data that will be used to calculate scaling parameters
new_input_min - desired lower bound in input data after scaling (not strictly followed)
new_input_max - desired upper bound in input data after scaling (not strictly followed)
Expand All @@ -424,10 +424,10 @@ FANN_EXTERNAL int FANN_API fann_set_input_scaling_params(
Calculate output scaling parameters for future use based on training data.
Parameters:
ann - ann for wgich parameters needs to be calculated
ann - ann for which parameters needs to be calculated
data - training data that will be used to calculate scaling parameters
new_output_min - desired lower bound in input data after scaling (not strictly followed)
new_output_max - desired upper bound in input data after scaling (not strictly followed)
new_output_min - desired lower bound in output data after scaling (not strictly followed)
new_output_max - desired upper bound in output data after scaling (not strictly followed)
See also:
<fann_set_input_scaling_params>
Expand All @@ -445,12 +445,12 @@ FANN_EXTERNAL int FANN_API fann_set_output_scaling_params(
Calculate input and output scaling parameters for future use based on training data.
Parameters:
ann - ann for wgich parameters needs to be calculated
ann - ann for which parameters needs to be calculated
data - training data that will be used to calculate scaling parameters
new_input_min - desired lower bound in input data after scaling (not strictly followed)
new_input_max - desired upper bound in input data after scaling (not strictly followed)
new_output_min - desired lower bound in input data after scaling (not strictly followed)
new_output_max - desired upper bound in input data after scaling (not strictly followed)
new_output_min - desired lower bound in output data after scaling (not strictly followed)
new_output_max - desired upper bound in output data after scaling (not strictly followed)
See also:
<fann_set_input_scaling_params>, <fann_set_output_scaling_params>
Expand Down

0 comments on commit f057eff

Please sign in to comment.