continue to train the trainingsfile #1920
-
I want to train a lot videos with single interference mode. So i trained a file and got my predictions. But now the predictions are not completely correct. So I wanna continue to train my Trainingsfile with new videos. But how do I do that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Flymaster01, There are a few routes you can go to get your model working on new videos: Option 1. (not advised) Create a new model by (initially) correcting predictions from the trained modelThis option only uses the labeled frames from the new videos to train the model; thus the goal here is not to generalize the model, but to train another model specialized to these new videos. This is not generally the advised approach unless the videos are so different that it will be very difficult to create a generalized model.
Option 2. (recommended) Generalize the model by adding the new videos to the existing projectThis option will use labeled frames from the existing project and from the new videos to essentially create a generalized model that predicts sufficiently across multiple videos.
Option 3. Keep projects modular, but have one "omega" project that combines all projectsA third option that is really just a combination of the two above is to start with Option 1 above so that you now have two projects with labels on "different enough" data. Then, create a third project which acts as your omega project that merges the two projects. This third project can then be used to train a generalized model and you still have each individual project giving you the option of training specialized models if wanted/needed.
Let us know if you have any trouble. Thanks, Related: |
Beta Was this translation helpful? Give feedback.
Hi @Flymaster01,
There are a few routes you can go to get your model working on new videos:
Option 1. (not advised) Create a new model by (initially) correcting predictions from the trained model
This option only uses the labeled frames from the new videos to train the model; thus the goal here is not to generalize the model, but to train another model specialized to these new videos. This is not generally the advised approach unless the videos are so different that it will be very difficult to create a generalized model.