You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
please provide basic example for machine learning / decision trees.
input: csv file with values of features and labels (boolean)
program_size, opt_flag, is_cmov_expected
20, O2 , no
20, O3 , yes
20, Os , yes
output: dot file with decision tree
The text was updated successfully, but these errors were encountered:
Note that categorical feature dimensions are currently converted into floats (since I didn't find universal way in our ML modules to support strings directly), so you will see such conversion when building a decision tree. Alternatively, we can convert such string to floats before using CK ML (to keep consistency) ...
By the way, I also added CK mode to record produced predictive models (with all extra useful information) in a CK entry and to reuse it, i.e. just give some features and get answer.
please provide basic example for machine learning / decision trees.
input: csv file with values of features and labels (boolean)
program_size, opt_flag, is_cmov_expected
20, O2 , no
20, O3 , yes
20, Os , yes
output: dot file with decision tree
The text was updated successfully, but these errors were encountered: