From 03d928a3f0b76ab40d0272ec7d7b984da452028b Mon Sep 17 00:00:00 2001 From: array-in-a-matrix Date: Tue, 23 Aug 2022 13:39:54 -0400 Subject: [PATCH] removed size variable --- README.md | 5 ++--- example.config.json | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 776bb1c..7a63f21 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # text-gen-bot + Matrix bot that generates messages based off of messages of other users using a neural network. The first Matrix AI? - + Note: Project is still being developed and some functionality is not fully implemented yet. ## Table of content @@ -77,8 +78,6 @@ Before a bot can be used the fields in the `config.json` file must be populated ► frequency ⇢ How often the bot sends a message (keep high to prevent spam). -► size ⇢ Bot starts generating messages when the number of lines in the training file is equal to this. The greater the size, the longer bot waits before messaging but might increase message quality. - ► retrain ⇢ The bot retrains itself after this many extra lines of messages are recorded in the text file. ``` diff --git a/example.config.json b/example.config.json index c8b762c..5c5e64c 100644 --- a/example.config.json +++ b/example.config.json @@ -5,6 +5,5 @@ "file": "training-matrix.txt", "prefix": "!", "frequency": "25", - "size": "5000", "retrain": "10000" }