change some values
This commit is contained in:
parent
a9a3d2ecf1
commit
64d68a9d92
2 changed files with 11 additions and 5 deletions
2
bot.py
2
bot.py
|
@ -131,7 +131,7 @@ async def main():
|
|||
|
||||
params = ConnectionParams(
|
||||
"min",
|
||||
host = "einstein.sturtz.cf",
|
||||
host = "irc.sturtz.cf",
|
||||
port = 6667,
|
||||
tls = False,
|
||||
autojoin = ['#sturtz_network'])
|
||||
|
|
|
@ -102,10 +102,16 @@ async def go(self, c, n, m):
|
|||
async def init(self):
|
||||
|
||||
shared.qtime = {}
|
||||
|
||||
shared.learntime = 0
|
||||
shared.learndelay = 1
|
||||
shared.enmul = 40
|
||||
shared.rawm['nlp'] = filter
|
||||
|
||||
# delay between grabbing random messages and passively
|
||||
# learning.
|
||||
shared.learndelay = 1
|
||||
# sentance ending weight, lower means longer sentances,
|
||||
# higher means shorter sentances. this will need to slowly
|
||||
# get larger as the database grows
|
||||
shared.enmul = 6
|
||||
|
||||
|
||||
shared.rawm['nlp'] = filter
|
||||
shared.cstate = {}
|
||||
|
|
Loading…
Reference in a new issue