Don't like ads? PRO users don't see any ads ;-)
Guest

IClassifier

By: a guest on May 1st, 2010  |  syntax: VB.NET  |  size: 0.27 KB  |  hits: 136  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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