removed size variable

This commit is contained in:
array-in-a-matrix 2022-08-23 13:39:54 -04:00
parent 4774610dad
commit 03d928a3f0
2 changed files with 2 additions and 4 deletions

View File

@ -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.
```

View File

@ -5,6 +5,5 @@
"file": "training-matrix.txt",
"prefix": "!",
"frequency": "25",
"size": "5000",
"retrain": "10000"
}