How to create a version between models?

Helo,

There is a way to create versions/ tags to change easiy between models? Thank you

When you train the model, you can use the --fixed-model-name option to include a version id in the model file name.

1 Like

Then when I run, there is a command to use the created model?

You can use --model path_to_model to use that particular model

1 Like

Thank you!!

You’ll find the docs on the command line options here.

1 Like

Good idea to store model with custom name. Thanks @stephens

But Is there any command line so I can also store my training files(domain.yml, actions.py, etc) for each of the model version/name?

yes, you can do all of that with git. If you view the repo witih rasa itself, you’ll see “releases” and branches that are named based on the releases.

I would read a tutorial on git workflows to understand this better. Here’s one.