mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-18 17:05:52 +00:00
Enhance cutpoints
This commit is contained in:
10
sample.py
10
sample.py
@@ -8,7 +8,15 @@ X = data.data
|
||||
y = data.target
|
||||
features = data.feature_names
|
||||
test = FImdlp()
|
||||
test.fit(X, y, features=features).transform(X)
|
||||
test.fit(X, y, features=features)
|
||||
# test.transform(X)
|
||||
|
||||
test = CFImdlp(debug=False)
|
||||
# k = test.cut_points(X[:, 0], y)
|
||||
# print(k)
|
||||
# k = test.cut_points_ant(X[:, 0], y)
|
||||
# print(k)
|
||||
test.debug_points(X[:, 0], y)
|
||||
|
||||
# X = np.array(
|
||||
# [
|
||||
|
Reference in New Issue
Block a user