I’m using a piece of code similar to this to train my NLU model.
from rasa.nlu.train import train
import asyncio
loop = asyncio.new_event_loop()
loop.run_until_complete(train(nlu_config='config.yml', data='data/nlu.yml', path='nlu_model'))
loop.close()
I want to display the percentage of training completed to the user and nothing else. Is there a way to do this?