tree.h 222 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 #ifndef TREE_H #define TREE_H #include "darknet.h" int hierarchy_top_prediction(float *predictions, tree *hier, float thresh, int stride); float get_hierarchy_probability(float *x, tree *hier, int c, int stride); #endif