from deeppavlov import build_model, configs
snips_model = build_model(configs.classifiers.intents_snips , download=True)
snips_model(["Hello! What is the weather in Boston tomorrow?"])
Hello All - I can use deeppavlov’s pretrained model above for intent classification with pre-created intents. However, I want to use deeppavlov to create my own intent classification model with my own intents and own text. There will be 5 to 7 total intents.
How would I go about doing this?
ie sample data i’ve got with text and intents
text,intent
Where is McDonald's?, resturant
What is the weather today, weather
Where is the closest Burger King?, restaurant
Is it sunny today?, weather
What is the temperature today?, weather