-
Notifications
You must be signed in to change notification settings - Fork 57
/
language-sentiment.html
91 lines (80 loc) · 3.2 KB
/
language-sentiment.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!--
Copyright 2019 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/html" data-template-name="google-cloud-language-sentiment">
<!--Name-->
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name">
</div>
<!--Credentials-->
<div class="form-row">
<label for="node-input-account"><i class="fa fa-user"></i> Credentials</label>
<input type="text" id="node-input-account">
</div>
<!--Key File-->
<div class="form-row">
<label for="node-input-keyFilename"><i class="fa fa-user"></i> Key File</label>
<input type="text" id="node-input-keyFilename">
</div>
<!--Language-->
<div class="form-row">
<label for="node-input-languageCode"><i class="fa fa-language"></i> Language</label>
<input type="text" id="node-input-languageCode">
</div>
</script>
<script type="text/html" data-help-name="google-cloud-language-sentiment">
<p>Perform sentiment analysis on the document.</p>
<p>Additional information on sentiment analysis can be found in the <a href="https://cloud.google.com/natural-language/docs/basics#sentiment_analysis">Google Cloud Docs</a>.</p>
<h3>Inputs</h3>
<dl class="message-properties">
<dt>msg.payload
<span class="property-type">string</span>
</dt>
<dd>The document on which to perform senitment analysis.</dd>
</dl>
<h3>Outputs</h3>
<dl class="message-properties">
<dt>msg.sentiment.score
<span class="property-type">number</span>
</dt>
<dd>The sentiment score.</dd>
<dt>msg.sentiment.magnitude
<span class="property-type">number</span>
</dt>
<dd>The sentiment magnitude.</dd>
</dl>
<h3>Details</h3>
<p><code>msg.payload</code> is used as the document to perform sentiment analysis upon.</p>
<p>The language field defines the language to be used for processing. It must be one
of the <a href="https://cloud.google.com/natural-language/docs/languages#sentiment_analysis">supported</a> languages</p>
</script>
<script type="text/javascript">
RED.nodes.registerType("google-cloud-language-sentiment", {
category: "GCP",
defaults: {
account: { type: "google-cloud-credentials", required: false },
keyFilename: {value: "", required: false },
languageCode: { value: "en", required: false },
name: { value: "", required: false }
},
inputs: 1,
outputs: 1,
icon: "nl-api.png",
align: "left",
color: "#3FADB5",
label: function () {
return this.name || "sentiment";
},
paletteLabel: "sentiment"
});
</script>