[parser] moving tagger function pointer definition to a separate header so it can be used for other models
This commit is contained in:
5
src/tagger.h
Normal file
5
src/tagger.h
Normal file
@@ -0,0 +1,5 @@
|
||||
#include "string_utils.h"
|
||||
#include "tokens.h"
|
||||
|
||||
// Arguments: tagger, context, tokenized str, index
|
||||
typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t);
|
||||
Reference in New Issue
Block a user