Thanks to visit codestin.com
Credit goes to github.com

Skip to content

MAINT Remove -Wcpp warnings when compiling sklearn.svm._libsvm #25064

New issue

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

Merged
merged 25 commits into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
73a25b8
MAINT Remove -Wcpp warnings when compiling sklearn.svm._libsvm
OmarManzoor Nov 29, 2022
be7d289
Merge remote-tracking branch 'upstream/main' into cython_libsvm
OmarManzoor Nov 29, 2022
061fe55
Use NULL when class_weight_label is an empty array
OmarManzoor Nov 29, 2022
275e7b8
Use NULL for class_weight pointer if it is empty
OmarManzoor Nov 30, 2022
ff4f524
Use the NULL pointer for sv_coef it is empty
OmarManzoor Nov 30, 2022
afe1a93
Use the NULL pointer for support if it is empty
OmarManzoor Nov 30, 2022
f9f965b
Use the NULL pointer for support vectors and n class SV if they are e…
OmarManzoor Nov 30, 2022
31f983b
Merge remote-tracking branch 'upstream/main' into cython_libsvm
OmarManzoor Dec 1, 2022
d4c3ab9
Applied some formatting according to PR comment
OmarManzoor Dec 1, 2022
c90fe0f
Apply black formatting to set_predict_params
OmarManzoor Dec 1, 2022
20e3d4b
Replace cnp.ndarray with memory views in the predict function
OmarManzoor Dec 1, 2022
125a378
Handle empty memory views in predict function
OmarManzoor Dec 1, 2022
f258c57
Add NULL handling for probA and probB
OmarManzoor Dec 1, 2022
e8c9815
Replace cnp.ndarray with memory views in the predict_proba function
OmarManzoor Dec 2, 2022
df123fb
Add empty check for SV in predict_proba
OmarManzoor Dec 2, 2022
32e2160
Replace cnp.ndarray with memory views in the decision_function
OmarManzoor Dec 2, 2022
8c76b43
Merge remote-tracking branch 'upstream/main' into cython_libsvm
OmarManzoor Dec 2, 2022
ac97f1e
Add empty check for SV in decision_function
OmarManzoor Dec 2, 2022
1a2dfc7
Replace cnp.ndarray with memory views in the cross_validation function
OmarManzoor Dec 2, 2022
9487012
Revert additions in doc strings
OmarManzoor Dec 5, 2022
8195522
Merge remote-tracking branch 'upstream/main' into cython_libsvm
OmarManzoor Dec 15, 2022
940a7e7
Merge remote-tracking branch 'upstream/main' into cython_libsvm
OmarManzoor Dec 30, 2022
334ee88
Addressed comments on PR related to black formatting
OmarManzoor Dec 30, 2022
c20b80d
Some further black formatting
OmarManzoor Dec 30, 2022
87229f9
Black refactor
OmarManzoor Dec 30, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"sklearn.neighbors._ball_tree",
"sklearn.neighbors._kd_tree",
"sklearn.neighbors._partition_nodes",
"sklearn.svm._libsvm",
"sklearn.tree._splitter",
"sklearn.tree._utils",
"sklearn.utils._cython_blas",
Expand Down
Loading