fukurou's latest activity

  • fukurou
    fukurou replied to the thread Eliza C# port.
    using System; using System.Collections.Generic; using System.Text.RegularExpressions; public class ElizaDeducer { // This class...
  • fukurou
    fukurou replied to the thread Eliza C# port.
    public class EventChatV2 { private readonly Dictionary<string, LimUniqueResponder> dic = new Dictionary<string...
  • fukurou
    fukurou posted the thread Eliza C# port in chit chat.
    public class LimUniqueResponder { private List<string> responses; private UniqueRandomGenerator urg = new...
  • fukurou
    fukurou replied to the thread eliza port vb.aSS.
    Public Class ElizaDBWrapper ' This (function wrapper) class adds save/load functionality to the ElizaDeducer Object. ' Example...
  • fukurou
    fukurou replied to the thread eliza port vb.aSS.
    Public Class ElizaDeducerInitializer Inherits ElizaDeducer ' Constructor Public Sub New(lim As Integer) '...
  • fukurou
    fukurou replied to the thread eliza port vb.aSS.
    Imports System.Collections.Generic Imports System.Text.RegularExpressions Public Class ElizaDeducer ' This class populates a...
  • fukurou
    fukurou replied to the thread eliza port vb.aSS.
    Public Class EventChatV2 Private ReadOnly dic As New Dictionary(Of String, LimUniqueResponder)() Private ReadOnly modifiedKeys...
  • fukurou
    fukurou posted the thread eliza port vb.aSS in chit chat.
    Public Class LimUniqueResponder Private responses As List(Of String) Private urg As UniqueRandomGenerator = New...
  • fukurou
    fukurou replied to the thread Eliza ports.
    class PhraseMatcher: def __init__(self, matcher: str, responses: list['AXKeyValuePair']): self.matcher = re.compile(matcher)...
  • fukurou
    fukurou replied to the thread Eliza ports.
    class ElizaDeducerInitializer(ElizaDeducer): def __init__(self, lim: int): # Recommended lim = 5; it's the limit of...
  • fukurou
    fukurou replied to the thread Eliza ports.
    class ElizaDeducer: """ This class populates a special chat dictionary based on the matches added via its add_phrase_matcher...
  • fukurou
    fukurou replied to the thread Eliza ports.
    class EventChatV2: def __init__(self, lim: int): self.dic: dict[str, LimUniqueResponder] = {} self.modified_keys...
  • fukurou
    fukurou posted the thread Eliza ports in chit chat.
    class LimUniqueResponder: def __init__(self, lim: int): self.responses: List[str] = [] self.lim = lim...
  • fukurou
    fukurou replied to the thread skill branch upgrade.
    class SkillBranch1Liner: SkillBranch { init(goal: String, defcon: String, tolerance: Int, skills: Skill...) {...
  • fukurou
    fukurou replied to the thread skill branch upgrade.
    class AXLearnability { private var algSent = false // Problems that may result because of the last deployed algorithm var...
Top