I know I can do this in python but I wondered if there is a way to do it in php.
I have split a paragraph into sentences but some of these sentences are not really sentences and I would like to 'reject' them. I guess this requires some kind of sentence recognition. I know 'Punkt' can do this in nltk but I really need to be able to do the equivalent in php. An example is
'I like to run tap water.' which should be accepted
'Ewing J. R Nat Gen 133;324;pp123-456.' which should be rejected
Thanks