Disable cache folder while Rasa train

Hi @souvikg10, you can set a maximum size for the cache via an environment variable RASA_MAX_CACHE_SIZE (see here). Setting it to 0 will prevent the cache being created (via this function). So

RASA_MAX_CACHE_SIZE=0 rasa train

should give what you want.

1 Like