Skip to content

Commit a851aa7

Browse files
Updated pretrained script
1 parent d729518 commit a851aa7

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

samples/features/machine-learning-services/python/sentiment-analysis/pretrainedmodel_sentiment_analysis.sql

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,15 @@ CREATE OR ALTER PROCEDURE [dbo].[get_sentiment]
2121
AS
2222
BEGIN
2323
DECLARE @script nvarchar(max);
24-
24+
25+
--Check that text is not empty
26+
IF NULLIF(@text, '') is null
27+
BEGIN
28+
THROW 50001, 'Please specify a text value to be analyzed.', 1;
29+
RETURN
30+
END
31+
32+
2533
--The Python script we want to execute
2634
SET @script = N'
2735
import pandas as p
@@ -53,6 +61,12 @@ GO
5361

5462
--******************************************************************************************************************
5563
-- STEP 2 Execute the stored procedure to get sentiment of your own text
64+
--The below examples test a negative and a positive review text
5665
--******************************************************************************************************************
57-
EXECUTE [dbo].[get_sentiment] N'ENTER YOUR OWN TEXT HERE';
66+
-- Negative review
67+
EXECUTE [dbo].[get_sentiment] N'These are not a normal stress reliever. First of all, they got sticky, hairy and dirty on the first day I received them. Second, they arrived with tiny wrinkles in their bodies and they were cold. Third, their paint started coming off. Fourth when they finally warmed up they started to stick together. Last, I thought they would be foam but, they are a sticky rubber. If these were not rubber, this review would not be so bad.';
5868
GO
69+
70+
--Positive review
71+
EXECUTE [dbo].[get_sentiment] N'These are the cutest things ever!! Super fun to play with and the best part is that it lasts for a really long time. So far these have been thrown all over the place with so many of my friends asking to borrow them because they are so fun to play with. Super soft and squishy just the perfect toy for all ages.'
72+
GO

0 commit comments

Comments
 (0)