Hi,
I am trying to modify some of the .py files in the dev branch of TTS.
I have cloned it to Colab using:
!git clone https://github.com/Mozilla/TTS TTS_repo
%cd TTS_repo
!git checkout dev
!pip install -r requirements.txt
!python setup.py install
%cd …
After that i went to this py file
/content/TTS_repo/TTS/utils/generic_utils.py
And modified this line of code
def create_experiment_folder(root_path, model_name, debug):
- “”" Create a folder with the current date and time “”"*
date_str = datetime.datetime.now().strftime("%B-%d-%Y_%I+%M%p")
My objective was to change the date format to %y%m%d
But when I run the training, it keeps generating the experiment folder with the default folder name.
After that, Just to check I also moved visual.py to a random unrelated folder in Colab but the tensorboard charts still update.
I think this means I am not looking at the right files to modify.
Can someone please tell me which path / folder I should be modifying? or if there is a command to derive the same?