TextClassifier.st
changeset 4273 6b1c8dd09469
parent 3682 1629a0dc2875
equal deleted inserted replaced
4272:ef02a1f2c6fb 4273:6b1c8dd09469
       
     1 "
       
     2  COPYRIGHT (c) 2016 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice. This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person. No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libbasic2' }"
    12 "{ Package: 'stx:libbasic2' }"
     2 
    13 
     3 "{ NameSpace: Smalltalk }"
    14 "{ NameSpace: Smalltalk }"
     4 
    15 
     5 Object subclass:#TextClassifier
    16 Object subclass:#TextClassifier
     9 	poolDictionaries:''
    20 	poolDictionaries:''
    10 	category:'Collections-Text-Support'
    21 	category:'Collections-Text-Support'
    11 !
    22 !
    12 
    23 
    13 !TextClassifier class methodsFor:'documentation'!
    24 !TextClassifier class methodsFor:'documentation'!
       
    25 
       
    26 copyright
       
    27 "
       
    28  COPYRIGHT (c) 2016 by eXept Software AG
       
    29               All Rights Reserved
       
    30 
       
    31  This software is furnished under a license and may be used
       
    32  only in accordance with the terms of that license and with the
       
    33  inclusion of the above copyright notice. This software may not
       
    34  be provided or otherwise made available to, or used by, any
       
    35  other person. No title to or ownership of the software is
       
    36  hereby transferred.
       
    37 
       
    38 "
       
    39 !
    14 
    40 
    15 documentation
    41 documentation
    16 "
    42 "
    17     an initial experiment in text classification.
    43     an initial experiment in text classification.
    18     see BayesClassifierTest
    44     see BayesClassifierTest