You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/Unit/PolyglotTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ public function entity_extraction()
16
16
The origin of the bell's nickname is open to question; it may be named after Sir Benjamin Hall, who oversaw its installation, or heavyweight boxing champion Benjamin Caunt.
17
17
Four quarter bells chime at 15, 30 and 45 minutes past the hour and just before Big Ben tolls on the hour. The clock uses its original Victorian mechanism, but an electric motor can be used as a backup.";
$nlp = new \Web64\Nlp\NlpClient( $this->nlpserver_config['hosts'], $this->nlpserver_config['debug'] );
14
+
15
+
$text = "Big Ben is the largest of five bells and weighs 13.7 tonnes. It was the largest bell in the United Kingdom for 23 years.
16
+
The origin of the bell's nickname is open to question; it may be named after Sir Benjamin Hall, who oversaw its installation, or heavyweight boxing champion Benjamin Caunt.
17
+
Four quarter bells chime at 15, 30 and 45 minutes past the hour and just before Big Ben tolls on the hour. The clock uses its original Victorian mechanism, but an electric motor can be used as a backup.";
18
+
19
+
$sentiment = $nlp->sentiment( $text, 'en' );
20
+
$this->msg( "EN Sentiment:" . $sentiment );
21
+
22
+
$sentiment = $nlp->sentiment( "This is the worst product ever" );
23
+
$this->msg( "EN -Sentiment:" . $sentiment );
24
+
25
+
$sentiment = $nlp->sentiment( "This is great! " );
26
+
$this->msg( "EN +Sentiment:" . $sentiment );
27
+
28
+
29
+
// $sentiment = $nlp->sentiment( "Detter er helt forferdelig og skrekkelig og uverdig dårlig værst uhyggelig jævlig. hater dette. ", 'no' );
30
+
// $this->msg( "NO -Sentiment:" . $sentiment );
31
+
32
+
// $sentiment = $nlp->sentiment( "Detter er helt fantastisk bra, det beste jeg har sett. Imponert over den gode kvaliteten. sexy, spesiell, sær, trygg, nummen, takknemmlig, tilfreds, forelsket, modig, søt, snill, hjelpsom, fantastisk, ambisjonsrik, omtenksom, macho, fin, morsom, tålmodig, familieorientert, arbeidsom, iderik, kreativ, intelligent! S", 'no' );
0 commit comments