#Has anyone made an Ai system that can respond using different models?
5 messages · Page 1 of 1 (latest)
It happens all the time and can be approached in a couple of ways
- You sort the inputs into the models
- You extract features from the inputs and select the appropriate model from those features for the input
- You pass the input through all the models and select the best output or evaluate the outputs for the best response
I made a chat bot app for my computer and I made it use a different pretrained model based on the content in the prompt. I just wondered if anyone else made one so I might be able to improve mine using different ideas.
It's not uncommon to use different models for different inputs, or even chain models, but if it's just by differnet prompts, it's a better practice to just have a well trained model that can generalize over all prompts
@fickle tundra The reason I'm wanting to do it this way is because the really large models use too much RAM and I thought I might be able to first check if it can do the task with a smaller model and fall back on a much larger one if it can't.