i saved my model like this :
ktrain.get_predictor(learner.model,preproc=trans).save('model')
i want to load my model and use it and to do something like :
predictor = ktrain.load(folder)
x = "hello wold"
prediction = predictor(x)
now, i have a folder "model" which contains 5 files : vocab.txt , tokenizer_config.json, tf_model.preproc , special_tokens_map.json and config.json thank you please help me to load and use my predictor
There's also a method
model.predict_filename()
to predict from images.