Skip to content

Instantly share code, notes, and snippets.

@unfo
Created December 17, 2014 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unfo/910a8aff2e59b4330309 to your computer and use it in GitHub Desktop.
Save unfo/910a8aff2e59b4330309 to your computer and use it in GitHub Desktop.
-- USE: lua markov.lua pre-populated-history.log new-input-without-nicknames.log > ~/irc/NETWORK/#channel/in
local brain = {}
local NOWORD = "\0"
local history = arg[1]
local present = arg[2]
--[[
x: (where x is not one of the magic characters ^$()%.[]*+-?) represents the character x itself.
.: (a dot) represents all characters.
%a: represents all letters.
%c: represents all control characters.
%d: represents all digits.
%g: represents all printable characters except space.
%l: represents all lowercase letters.
%p: represents all punctuation characters.
%s: represents all space characters.
%u: represents all uppercase letters.
%w: represents all alphanumeric characters.
%x: represents all hexadecimal digits.
%x: (where x is any non-alphanumeric character) represents the character x. This is the standard way to escape the magic characters. Any punctuation character (even the non magic) can be preceded by a '%' when used to represent itself in a pattern.
[set]: represents the class which is the union of all characters in set. A range of characters can be specified by separating the end characters of the range, in ascending order, with a '-', All classes %x described above can also be used as components in set. All other characters in set represent themselves. For example, [%w_] (or [_%w]) represents all alphanumeric characters plus the underscore, [0-7] represents the octal digits, and [0-7%l%-] represents the octal digits plus the lowercase letters plus the '-' character.
The interaction between ranges and classes is not defined. Therefore, patterns like [%a-z] or [a-%%] have no meaning.
[^set]: represents the complement of set, where set is interpreted as above.
]]--
---[[
function learn(dict, line)
local prev1, prev2 = NOWORD, NOWORD
for _word in string.gmatch(line, "[^ ]+") do
dict[prev1 .. prev2] = dict[prev1 .. prev2] or {}
table.insert(dict[prev1 .. prev2], _word)
prev1, prev2 = prev2, _word
end
return dict
end
function populate_stuff(dict, filename)
io.input(filename)
local lines = 0
for line in io.lines() do
lines = lines + 1
dict = learn(dict, line)
end
return dict,lines
end
local filename = history
brain, count = populate_stuff(brain, filename)
io.write(filename, " ", count, " lines processed\n")
--]]
local function random_word(dict, w1, w2)
if dict[w1 .. w2] == nil or next(dict[w1 .. w2]) == nil or #dict[w1 .. w2] == 0
then return nil
else
words = dict[w1 .. w2]
return words[math.random(#words)]
end
end
local tailin = io.popen('tail -n 0 -F '.. present ..' 2>&1', 'r')
for line in tailin:lines() do
--local line = io.read("*line")
--if line == nil or line == ""
if math.random() > 0.9 then
local prev1, prev2 = NOWORD, NOWORD
local hitword = nil
local talk
for word in string.gmatch(line, "[^ ]+") do
if prev1 ~= NOWORD then
local rndword = random_word(brain, prev1, word)
if rndword ~= nil and math.random() > 0.66 then
talk = {prev1,word}
prev1, prev2 = word, rndword
hitword = true
break
end
end
prev1 = word
end
if hitword then
for w=1,20 do
local new_word = random_word(brain, prev1, prev2)
if new_word == nil then
--io.write("-x-")
break
else
--io.write(new_word, " ")
table.insert(talk, new_word)
prev1, prev2 = prev2, new_word
end
end
--io.write("\n")
print(table.concat(talk, " "))
io.flush()
else
--print("No hits")
end
end
brain = learn(brain, line)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment