-
Hi everyone, I am curious how to do this with an LLM. Are there some resources you can share to learn about the process? I know a bit about cusotmizing models like adding a System Message or adjusting to temperature of the model and I also trained an LLM to generate software requiremts before. But I don't know how to train a model to perform an action like turning a smart device on or off. Maybe you could even provide me with an explanation how the models for home assistant were trained exactly. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Are you asking more about the theory about how Supervised Fine Tuning works or are you just looking for how to run the scripts to reproduce the model? |
Beta Was this translation helpful? Give feedback.
Sorry, been busy and haven't had the time to respond to this properly.
First, building a model like this is actually more about building the dataset. The dataset represents what the model is capable of. The largest part of this project has been building this dataset that contains thousands of examples of different scenarios of a person asking a personal assistant to perform an action in Home Assistant. Nothing suitable existed beforehand so I generated a bunch of pieces of an example and then wrote a script to put those pieces together to produce many different examples. The examples in this dataset are formatted in a specific way that includes all of the information that the model might …