Share Pastebin
Guest
Private paste!

IClassifier

By: a guest | May 1st, 2010 | Syntax: VB.NET | Size: 0.27 KB | Hits: 122 | Expires: Never
Copy text to clipboard
  1. Public Interface IClassifier
  2.    
  3.     Sub TeachPhrases(ByVal cat As String, ByVal phrases() As String)    
  4.     Sub TeachCategory(ByVal cat As String, ByVal tr As System.IO.TextReader)  
  5.     Function Classify(ByVal tr As System.IO.StreamReader) As Dictionary
  6.  
  7. End Interface