-
Notifications
You must be signed in to change notification settings - Fork 73
Configs for xpu: decision forest classifier #100
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
dmitrii-kriukov
merged 18 commits into
IntelPython:master
from
dmitrii-kriukov:dev/dkriukov-xpu-df_clsf
Jan 13, 2022
Merged
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2c0d098
df_clsf
dmitrii-kriukov c2227ab
newline
dmitrii-kriukov b1691ef
disable float64
dmitrii-kriukov 2576c15
pep8
dmitrii-kriukov a85389f
sqrt and log2 parse
dmitrii-kriukov fe6ce35
sqrt and log2 parse
dmitrii-kriukov bdb3722
fix codefactor
dmitrii-kriukov dded1c0
fix
dmitrii-kriukov 54981ec
return ternary
dmitrii-kriukov 78400e6
enable all devices
dmitrii-kriukov a7bb1eb
Merge branch 'IntelPython:master' into dev/dkriukov-xpu-df_clsf
dmitrii-kriukov f2b57f2
enable float64
dmitrii-kriukov 8cadd83
delete extra files
dmitrii-kriukov b8eb13d
replace None with none
dmitrii-kriukov b2e4ff4
column major
dmitrii-kriukov 780f4f9
data-order F back
dmitrii-kriukov 937913f
float scientific notation handling
dmitrii-kriukov bf546f8
pep8
dmitrii-kriukov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,113 @@ | ||
{ | ||
"common": { | ||
"lib": "sklearn", | ||
"algorithm": "df_clsf", | ||
"data-format": "pandas", | ||
"data-order": "F", | ||
"dtype": ["float32", "float64"], | ||
"max-features": "sqrt", | ||
"device": ["host", "cpu", "gpu", "none"] | ||
}, | ||
"cases": [ | ||
{ | ||
"dataset": [ | ||
{ | ||
"source": "npy", | ||
"name": "susy", | ||
"training": | ||
{ | ||
"x": "data/susy_x_train.npy", | ||
"y": "data/susy_y_train.npy" | ||
}, | ||
"testing": | ||
{ | ||
"x": "data/susy_x_test.npy", | ||
"y": "data/susy_y_test.npy" | ||
} | ||
} | ||
], | ||
"num-trees": 10, | ||
"max-depth": 5 | ||
}, | ||
{ | ||
"dataset": [ | ||
{ | ||
"source": "npy", | ||
"name": "susy", | ||
"training": | ||
{ | ||
"x": "data/susy_x_train.npy", | ||
"y": "data/susy_y_train.npy" | ||
}, | ||
"testing": | ||
{ | ||
"x": "data/susy_x_test.npy", | ||
"y": "data/susy_y_test.npy" | ||
} | ||
} | ||
], | ||
"num-trees": 100, | ||
"max-depth": 8 | ||
}, | ||
{ | ||
"dataset": [ | ||
{ | ||
"source": "npy", | ||
"name": "susy", | ||
"training": | ||
{ | ||
"x": "data/susy_x_train.npy", | ||
"y": "data/susy_y_train.npy" | ||
}, | ||
"testing": | ||
{ | ||
"x": "data/susy_x_test.npy", | ||
"y": "data/susy_y_test.npy" | ||
} | ||
} | ||
], | ||
"num-trees": 20, | ||
"max-depth": 16 | ||
}, | ||
{ | ||
"dataset": [ | ||
{ | ||
"source": "npy", | ||
"name": "mnist", | ||
"training": | ||
{ | ||
"x": "data/mnist_x_train.npy", | ||
"y": "data/mnist_y_train.npy" | ||
}, | ||
"testing": | ||
{ | ||
"x": "data/mnist_x_test.npy", | ||
"y": "data/mnist_y_test.npy" | ||
} | ||
} | ||
], | ||
"num-trees": 100, | ||
"max-depth": 10 | ||
}, | ||
{ | ||
"dataset": [ | ||
{ | ||
"source": "npy", | ||
"name": "hepmass_150K", | ||
"training": | ||
{ | ||
"x": "data/hepmass_150K_x_train.npy", | ||
"y": "data/hepmass_150K_y_train.npy" | ||
}, | ||
"testing": | ||
{ | ||
"x": "data/hepmass_150K_x_test.npy", | ||
"y": "data/hepmass_150K_y_test.npy" | ||
} | ||
} | ||
], | ||
"num-trees": 50, | ||
"max-depth": 15 | ||
} | ||
] | ||
} |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.