CPT icon indicating copy to clipboard operation
CPT copied to clipboard

This is the native Python implementation of CPT(compact Prediction Tree)

Results 5 CPT issues
Sort by recently updated
recently updated
newest added

Training with 1 million records. Predicting 300000 records. Already been 2 days and only 5% predictions. ~2it/s Any advice ?

For sequences of unequal length in train and test set, do I just leave them as it is or have to pad to equal lengths with some arbritary integer. Does...

Hi, I run CPT on included test and train files and it was fine. But then I created my own files, and I got below results: testing or prediction step...

It looks like some code is unimplemented in the "score(...)" function. There is a magic number 0.001 hardcoded in this function, and two unused arguments ("length" and "target_size") Perhaps the...

looking at the code for the load_files() function, why did you append the values of the test file in the **data** list? `for index, row in test.iterrows(): data.append(row.values) target.append(list(row.values))`