new font strategy

This commit is contained in:
Joseph Redmon
2016-11-05 14:09:21 -07:00
parent 352ae7e65b
commit c7a700dc22
113 changed files with 330 additions and 209 deletions

View File

@ -5,12 +5,16 @@ typedef struct{
int *leaf;
int n;
int *parent;
int *group;
char **name;
int groups;
int *group_size;
int *group_offset;
} tree;
tree *read_tree(char *filename);
void hierarchy_predictions(float *predictions, int n, tree *hier, int only_leaves);
void change_leaves(tree *t, char *leaf_list);
#endif