We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i use master to compile, it happend error in this file /linear_models/liblinear.go NewParameter func:
/linear_models/liblinear.go
func NewParameter(solver_type int, C float64, eps float64) *Parameter { param := Parameter{} param.c_param.solver_type = C.int(solver_type) param.c_param.eps = C.double(eps) param.c_param.C = C.double(C) param.c_param.nr_weight = C.int(0) param.c_param.weight_label = nil param.c_param.weight = nil return ¶m }
the input parameter has the same name as the package name 'C'.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
when i use master to compile, it happend error in this file
/linear_models/liblinear.go
NewParameter func:the input parameter has the same name as the package name 'C'.
The text was updated successfully, but these errors were encountered: