-
In a staged learning process, consider a case where a diversity filter was implemented in the first stage. At the midpoint of the first stage, the number of compounds containing scaffold 'A' reached the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, you are basically asking if the diversity memory is carried over into a follow-up run. This is controlled by If you set up multiple stages in a single configuration file you would need to set Cheers, |
Beta Was this translation helpful? Give feedback.
Hi,
you are basically asking if the diversity memory is carried over into a follow-up run. This is controlled by
use_checkpoint
(in[parameters]
) which is by defaultfalse
. If you want to read in the scaffolds from the previous stage, set this totrue
and you will continue with the diversity filter state as it was in the final epoch of the previous stage. This is the case when you run multiple stages manually through separate configuration files.If you set up multiple stages in a single configuration file you would need to set
purge_memories
. By default it istrue
which means that the diversity filter state is not carried over to the next stage.Cheers,
Hannes.