You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a big deal, but Ubuntu 16.04 Python 2.7 0 does not like the spaces in the names.
Just replace the spaces with a - and all works well.
Example:
name='the-context-text
name='the-answer-text-up-to-the-current-token
Do all the names that way.
Question: Does the bot auto-learn from conversation or must it be retrained with each session ?
The text was updated successfully, but these errors were encountered:
The bot saves the conversation for further training, see lines 124-126, 188 and 189 of conversation.py. Therefore, you can "fine tune" the pre-trained model using these files to train it for a few epochs.
Shouldn't the files (file_saved_context and file_saved_answer) in conversation.py be open to append?
qf = open(file_saved_context, 'a')
af = open(file_saved_answer, 'a')
That way you can keep adding to the files until training is initiated ?
Not a big deal, but Ubuntu 16.04 Python 2.7 0 does not like the spaces in the names.
Just replace the spaces with a - and all works well.
Example:
name='the-context-text
name='the-answer-text-up-to-the-current-token
Do all the names that way.
Question: Does the bot auto-learn from conversation or must it be retrained with each session ?
The text was updated successfully, but these errors were encountered: