How can we use a different pretrained model for the text classifier in the ktrain library? When using:
model = text.text_classifier('bert', (x_train, y_train) , preproc=preproc)
This uses the multilangual pretrained model
However, I want to try out a monolingual model as well. Namely the Dutch one: ''wietsedv/bert-base-dutch-cased', which is also used in other k-train implementations, for example.
However, when trying to use this command in the text classifier it does not work:
model = text.text_classifier('bert', (x_train, y_train) ,
> preproc=preproc, bert_model='wietsedv/bert-base-dutch-cased')
or
model = text.text_classifier('wietsedv/bert-base-dutch-cased', (x_train, y_train), preproc=preproc)
Does anyone how to do this? Thanks!
There are two text classification APIs in ktrain. The first is the
text_classifier
API which can be used for a select number of both transformers and non-transformers models. The second is theTransformer
API which can be used with anytransformers
model including the one you listed.The latter is explained in detail in this tutorial notebook and this medium article.
For instance, you can replace
MODEL_NAME
with any model you want in the example below:Example: