Overview
Overview
The Cognitive library allows users to perform tasks such as Text Analysis, Text Translate, Text Language Detect, Text Classify, and Text Summarize in conjunction with the Cognitive Server.
The features provided by the Cognitive library are as follows:
Analyzing text : GoogleTextAnalysis, GoogleTextClassify, NaverTextSummarize, NaverTextSentiment, BrityCognitiveClassifySentiment, BrityCognitiveExtractKeyword, BrityCognitiveProcessSpacing, BrityCognitiveClassifyIntent, BrityCognitiveRecommendSynonym
Translate text : GoogleTextTranslate, NaverTextTranslate
Text language detection : GoogleTextLanguageDetect, NaverTextLanguageDetect, BrityCognitiveDetectLanguage
Extract Text: GoogleOCR, NaverOCR
Common properties
Common properties
REQUEST(Google)
Configure settings related to making requests to Google Cognitive servers.
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
Y | URL | String | Y | - | Y | Enter the address to call.- GoogleTextAnalysis: https://language.googleapis.com/v1/documents:annotateText - GoogleTextClassify: https://language.googleapis.com/v1/documents:classifyText - GoogleTextTranslate: https://translation.googleapis.com/language/translate/v2 - GoogleTextLanguageDetect: https://translation.googleapis.com/language/translate/v2/detect |
Y | Authorization | String | Y | - | N | Enter the API Key. |
Y | Input Text | String | Y | - | N | Enter the text to be analyzed (classified). |
Y | Target Language | String | Y | - | N | Enter which language to translate into. (GoogleTextTranslate only) (ISO-639-1 Code) |
REQUEST(Naver)
Configure settings related to making requests to the Naver Cognitive server.
Common | properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
Y | URL | String | Y | - | Y | Enter the address to call.- NaverTextSummarize: https://naveropenapi.apigw.ntruss.com/text-summary/v1/summarize - NaverTextSentiment: https://naveropenapi.apigw.ntruss.com/sentiment-analysis/v1/analyze - NaverTextTranslate: https://naveropenapi.apigw.ntruss.com/nmt/v1/translation - NaverTextLanguageDetect: https://naveropenapi.apigw.ntruss.com/langs/v1/dect |
Y | Client ID | String | Y | - | N | Enter the API Key ID for authorization authentication. |
Y | Client Secret | String | Y | - | N | Enter the API Key for authorization authentication. |
Y | Input Text | String | Y | - | N | Enter the text to be analyzed (target). |
Y | Source Language | String | Y | - | N | Enter the language information of the entered text. (NaverTextTranslate only) (ISO-639-1 Code) |
Y | Target Language | String | Y | - | N | Output string value for the translated language. (NaverTextTranslate only) (ISO-639-1 Code) |
MORE OPTIONS
Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|
On Error | Combination box | N | - | N | Specify an action to carry out when an error occurs at the time of execution. - If not specified: Output errors and exit the task. - --Ignore--: Ignore the error. - --Retry--: Try the activity one more time. - --Goto--: Try the scenario for the specified time if the activity fails. - _Event: Select an event created within the project. If a handler is specified: Call the specified handler. |
DESCRIPTION
Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|
DESCRIPTION | Text | N | - | N | Enter the description for the activity card. The Description entered in the DESCRIPTION field is used as an description of the property. A representative value will be displayed in the absence of the DESCRIPTION input. |
GoogleTextAnalysis
GoogleTextAnalysis
Overview
This activity card calls Google's text analytics API.
Application procedure
In the [Output] Result field, enter a variable to store the result of calling in Response.
Enter the URL information to call and the API Key in Authorization.
In the Input Text field, enter the text to be analyzed.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | Syntax | Toggle button | Y | - | N | It provides information by decomposing it into a series of phrases and tokens. |
N | Sentiment | Toggle button | Y | - | N | Sentiment analysis determines positive, negative, and neutral. |
N | Entity | Toggle button | Y | - | N | Checks known items and transforms information. |
N | Entity Seniment | Toggle button | Y | - | N | It combines item analysis and sentiment analysis for processing. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text analysis using GoogleTextAnalysis.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_GoogleTextAnalysis
Used variables
this.authorization = Variable to which API Key information will be assigned
this.inputText = text to parse
Used properties
[Output] Reponse = RESULT
URL = https://language.googleapis.com/v1/documents:annotateText
Authorization = this.authorization
Input Text = this.inputText
Related/Similar activities
GoogleTextClassify, NaverTextSummarize, NaverTextSentiment
GoogleTextTranslate
GoogleTextTranslate
Overview
This activity card calls Google's text translation API.
Application procedure
In the [Output] Result field, enter a variable to store the result of calling in Response.
Enter the URL information to call and the API Key in Authorization.
In the Input Text field, enter the text to be analyzed.
In the Target Language field, enter the language you want to translate into.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Use GoogleTextTranslate to do text translation.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_GoogleTextTranslate
Used variables
this.authorization = Variable to which API Key information will be assigned
this.inputText = Text to be translated
Used properties
[Output] Reponse = RESULT
URL = https://translation.googleapis.com/language/translate/v2
Authorization = this.authorization
Input Text = this.inputText
Target Language = 'en'
Related/Similar activities
GoogleTextLanguageDetect
GoogleTextLanguageDetect
Overview
This activity card calls Google's text language detection API.
Application procedure
In the [Output] Result field, enter a variable to store the result of calling in Response.
Enter the URL information to call and the API Key in Authorization.
In the Input Text field, enter the text to detect language.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text language detection using GoogleTextLanguageDetect.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_ P_Cognitive_ GoogleTextLanguageDetect
Used variables
this.authorization = Variable to which API Key information will be assigned
this.inputText = Text to detect language
Used properties
[Output] Reponse = RESULT
URL = https://translation.googleapis.com/language/translate/v2
Authorization = this.authorization
Input Text = this.inputText
Related/Similar activities
GoogleTextClassify
GoogleTextClassify
Overview
This activity card calls Google's text classification API.
Application procedure
In the [Output] Result field, enter a variable to store the result of calling in Response.
Enter the URL information to call and the API Key in Authorization.
In the Input Text field, enter the text to be classified.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Use GoogleTextClassify to do text classification.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_GoogleTextClassify
Used variables
this.authorization = Variable to which API Key information will be assigned
this.inputText = text to sort
Used properties
[Output] Reponse = RESULT
URL = https://language.googleapis.com/v1/documents:classifyText
Authorization = this.authorization
Input Text = this.inputText
Related/Similar activities
GoogleTextAnalysis, NaverTextSummarize,NaverTextSentiment
GoogleOCR
GoogleOCR
Overview
This activity card calls Google's OCR API.
Application procedures
In the [Output] Result field, enter a variable to store the result of calling in Response.
Enter the authentication type, authentication information, and URL to call to access GoogleOCR service.
In the Input Text field, enter the image path to extract text from.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | AuthenticationType | Combo box | Y | - | N | Select the type of authentication to access the OCR service. See the following options for GoogleOCR: - OAuth2ClientID (attended) - ServiceAccoutKey (unattended) |
N | ClientID | String | Y if AuthenticationType is OAuth2ClientID (Attended), N otherwise | - | N | Enter the ID of user account. |
N | ClientSecret | String | Y if AuthenticationType is OAuth2ClientID (Attended), N otherwise | - | N | Enter user password. |
N | KeyPath | String | N if AuthenticationType is OAuth2ClientID (Attached), Y otherwise | - | N | Enter the path to the user account key JSON file. |
N | URL | String | Y | - | Y | Enter the GoogleOCR API address. - image ocr (jpeg, png8, png24, gif, animated gif, bmp, webp, raw, ico) https://vision.googleapis.com/v1/images:annotate - file ocr (pdf, tiff)https://vision.googleapis.com/v1/files:annotate |
N | Input Image | String | Y | - | N | Enter the extraction destination image file path. |
Y | - | - | - | - | Common properties of the Cognitive library. | |
Y | - | - | - | - | Common properties of the Cognitive library. | |
Y | - | - | - | - | Common properties of the Cognitive library. |
Example of utilization
Perform text extraction using GoogleOCR.
Sample file
Menu > Help > Samples > Sample > Cognitive > Cognitive_Google
Used variables
RESULT = Variable to store the result of the call
this.clientID = Variable to which credential ID information will be assigned
this.clientSecret = Variable to which credential secret information will be assigned
Used properties
[Output] Reponse = RESULT
URL(image ocr) = https://vision.googleapis.com/v1/images:annotate
URL(file ocr) = https://vision.googleapis.com/v1/files:annotate
AuthorizationType = OAuth2ClientID
ClientID = this.clientID
ClientSecret = this.clientSecret
Input Image = Global.ResourcesDir + 'TestData_OCR.png'
Remarks
Google OCRSilver "jpeg", "png8", "png24", "gif", animated gif (First Frame Only), "bmp", "webp", "raw", "ico", "pdf", "tiff" only supports the format.
Related/Similar activities
NaverTextLanguageDetect
NaverTextLanguageDetect
Overview
This activity card call NAVER's text language detection API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information to call, Client ID, and Client Secret.
In the Input Text field, enter the text to detect language.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text language detection using NaverTextLanguageDetect.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_ NaverTextLanguageDetect
Used variables
this.clientID = Variable to which Client ID information will be assigned
this.clientSecret = Variable to which Client Secret information will be assigned
this.inputText = Text to detect language
Used properties
[Output] Reponse = RESULT
URL = https://naveropenapi.apigw.ntruss.com/sentiment-analysis/v1/analyze
Client ID = this.ClientID
Client Secret = this.ClientSecret
Related/Similar activities
NaverText Translate
NaverText Translate
Overview
This activity card call Naver's text translation API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information to call, Client ID, and Client Secret.
In the Input Text field, enter the text to be translated.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text translate API using NaverTextTranslate.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_NaverTextTranslate
Used variables
this.clientID = Variable to which Client ID information will be assigned
this.clientSecret = Variable to which Client Secret information will be assigned
this.inputText = Text to be translated
Used properties
[Output] Reponse = RESULT
URL = https://naveropenapi.apigw.ntruss.com/sentiment-analysis/v1/analyze
Client ID = this.ClientID
Client Secret = this.ClientSecret
Input Text= this.inputText
Source Language = 'ko'
Target Language = 'en'
Related/Similar activities
NaverTextSummarize
NaverTextSummarize
Overview
This activity card call Naver's text summary API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information to call, Client ID, and Client Secret.
In the Input Text field, enter the text you want to summarize.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | Language | Combo box | N | - | N | Enter the input text language.ja or ko |
N | Model | Combo box | N | - | N | Enter the model on which to operate.general or news |
N | Tone | Number | N | - | N | Enter the tone to perform the action. |
N | Summary Count | Number | N | - | Y | Enter the number of summaries. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text summarization using NaverTextSummarize.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_NaverTextSummarize
Used variables
this.clientID = Variable to which Client ID information will be assigned
this.clientSecret = Variable to which Client Secret information will be assigned
this.inputText = Text to summarize
Used properties
[Output] Reponse = RESULT
URL = https://naveropenapi.apigw.ntruss.com/text-summary/v1/summarize
Client ID = this.ClientID
Client Secret = this.ClientSecret
Input Text= this.inputText
Related/Similar activities
GoogleTextAnalysis, GoogleTextClassify, NaverTextSentiment
NaverTextSentiment
NaverTextSentiment
Overview
This activity card calls Naver's text sentiment analysis API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information to call, Client ID, and Client Secret.
In the Input Text field, enter the text for sentiment analysis.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text sentiment analysis using NaverTextSentiment.
Sample file
Menu > Help > Samples > Sample > Cognitive > P_Cognitive_NaverTextSentiment
Used variables
this.clientID = Variable to which Client ID information will be assigned
this.clientSecret = Variable to which Client Secret information will be assigned
this.inputText = text to analyze sentiment
Used properties
[Output] Reponse = RESULT
URL = https://naveropenapi.apigw.ntruss.com/sentiment-analysis/v1/analyze
Client ID = this.ClientID
Client Secret = this.ClientSecret
Input Text= this.inputText
Related/Similar activities
GoogleTextAnalysis, GoogleTextClassify, NaverTextSummarize
NaverOCR
NaverOCR
Overview
This activity card calls the Naver OCR API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access NaverOCR service.
In the Input Imagefield, enter the image path to extract text from.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | Invoke URL | String | Y | - | Y | Enter the NaverOCR API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Input Image | String | Y | - | N | Enter the extraction destination image file path. |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform text extraction using NaverOCR.
Sample file
Menu > Help > Samples > Sample > Cognitive > Cognitive_Naver
Used variables
this.authorization = Variable to which SecretKey information will be assigned
Used properties
[Output] Reponse = RESULT
Authorization = this.authorization
Input Image = Global.ResourcesDir + 'TestData_OCR.png'
Naver OCR only supports “jpg”, “jpeg”, “png” images, “pdf”, and “tiff” single page formats.
Related/Similar activities
BrityTextUnderstanding
BrityTextUnderstanding
Overview
This activity card calls the Text API.
Application procedures
In the[Output] JSON Response field, enter a variable to store the result of calling in.
Enter URL information and Authorization to be called to access BrityTextUnderstanding service.
In the Input Imagefield, enter a request for analysis of type JSON.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] JSON Response | Variable | Y | - | Y | Enter a variable to specify the result of the call. |
N | Server URL | String | Y | - | Y | Enter the Server URL. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | API List | Combo Box | Y | - | N | Select the API you want to call. |
N | [Input] Item | String | Y | - | N | Enter an analysis request of type JSON.
|
Y | - | - | - | - | Common property of the Cognitive Library. | |
Y | - | - | - | - | Common property of the Cognitive Library. |
Example of utilization
Call the Text API, which uses BrityCognitive's AI model.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitive
Used variables
this.authorization = SecretKey variable to which the information will be assigned
Used properties
[Output] JSON Reponse = RESULT
Server URL = 'http://127.0.0.1:9001'
Authorization = this.authorization
API List = KgKeyword
Related/Similar activities
BrityDocumentUnderstanding
BrityDocumentUnderstanding
Overview
This activity card calls the Document API.
Application procedure
In the [Output] JSON Response field, enter a variable to store the result of calling in.
Enter URL information and Authorization to be called to access BritydocumentUnderstanding service.
In the Input Itemfield, enter the file you want to analyze.
Card properties
Common | Properties | Type | Required | Unit | Auto-settings | Description |
---|---|---|---|---|---|---|
N | [Output] JSON Response | Variable | Y | - | Y | Enter a variable to specify the result of the call. |
N | Server URL | String | Y | - | Y | Enter the Server URL you want to call. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | API List | Combo Box | Y | - | N | Select the API you want to call. |
N | [Input] Item | String | Y | - | N | Enter the file you want to analyze. |
Y | - | - | - | - | Common property of the Cognitive Library. | |
Y | - | - | - | - | Common property of the Cognitive Library. |
Example of utilization
Call the Document API, which uses BrityCognitive's AI model.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitive
Used variables
this.authorization = SecretKey variable to which the information will be assigned
Used properties
[Output] JSON Reponse = RESULT
Server URL = 'http://127.0.0.1:9001'
Authorization = this.authorization
API List = PredictOCR
Related/Similar activities
BrityCognitiveExtractKeyword
BrityCognitiveExtractKeyword
Overview
This activity calls BrityCognitive's keyword extraction API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access NaverOCR service.
In the Input Text field, enter the text from which to extract keywords.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | Invoke URL | String | Y | - | Y | Enter the BrityCognitiveExtractKeyword API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Input Text | String | Y | - | N | Enter text from which to extract keywords.
|
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform keyword extraction using BrityCognitiveExtractKeyword.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitiveExtractKeyword
Used variables
this.authorization = Variable to which SecretKey information will be assigned
this.inputText = Text information from which to extract keywords
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/extract/keyword
Authorization = this.authorization
Input Text= this.inputIText
Related/Similar activities
GoogleTextAnalysis,GoogleTextClassify, NaverTextSummarize, NaverTextSentiment
BrityCognitiveDetectLanguage
BrityCognitiveDetectLanguage
Overview
This activity card calls BrityCognitive's language detection API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access BrityCognitiveDetectLanguage service.
In the Input Text field, enter the text to detect language.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | URL | String | Y | - | Y | Enter the BrityCognitiveDetectLanguage API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Input Text | String | Y | - | N | Enter text from which to detect the language.
|
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform language detection using BrityCognitiveDetectLanguage.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitiveDetectLanguage
Used variables
this.authorization = Variable to which SecretKey information will be assigned
this.inputText = Text information from which to extract keywords
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/detect/language
Authorization = this.authorization
Input Text= this.inputIText
Related/Similar activities
GoogleTextLanguageDetect, GoogleTextLanguageDetect
BrityCognitiveProcessSpacing
BrityCognitiveProcessSpacing
Overview
This activity card calls BrityCognitive's spacing correction API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access BrityCognitiveProcessSpacing service.
In the Input Text field, enter the text to be corrected for spacing.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | URL | String | Y | - | Y | Enter the BrityCognitiveProcessSpacing API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Input Text | String | Y | - | N | Enter the text for spacing correction.
|
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform spacing correction using BrityCognitiveProcessSpacing.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitiveProcessSpacing
Used variables
this.authorization = Variable to which SecretKey information will be assigned
this.inputText = Text information from which to extract keywords
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/process/spacing
Authorization = this.Authorization
Input Text= this.inputIText
Related/Similar activities
GoogleTextAnalysis,GoogleTextClassify, NaverTextSummarize, NaverTextSentiment
BrityCognitiveClassifySentiment
BrityCognitiveClassifySentiment
Overview
This activity card calls BrityCognitive's sentiment classification API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access BrityCognitiveClassifySentiment service.
In the Input Text field, enter the text for sentiment classification.
In the Language field, select the language for sentiment classification.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | URL | String | Y | - | Y | Enter the BrityCognitiveClassifySentiment API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Input Text | String | Y | - | N | Enter the text for spacing correction.
|
N | Language | Combo Box | Y | - | N | Select the language to use for sentiment classification.
|
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Sentiment classification is performed using BrityCognitiveClassifySentiment.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitiveClassifySentiment
Used variables
this.authorization = Variable to which SecretKey information will be assigned
this.inputText = Text information from which to extract keywords
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/classify/sentiment
Authorization = this.authorization
Input Text= this.inputIText
Language = ko
Related/Similar activities
GoogleTextAnalysis,GoogleTextClassify, NaverTextSummarize, NaverTextSentiment
BrityCognitiveRecommendSynonym
BrityCognitiveRecommendSynonym
Overview
This activity card calls BrityCognitive's thesaurus API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access BrityCognitiveRecommendSynonym service.
In the Target field, enter a word to search for synonyms.
In the Input Text field, enter the text to suggest thesaurus.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | URL | String | Y | - | Y | Enter the BrityCognitiveRecommendSynonym API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Target | String | Y | - | N | Enter a word for which you want to search for synonyms. |
N | Input Text | String | Y | - | N | Enter the text for spacing correction.
|
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
Perform synonym recommendations using BrityCognitiveRecommendSynonym.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitiveRecommendSynonym
Used variables
this.authorization = Variable to which SecretKey information will be assigned
this.target = word information to search for synonyms
this.inputText = Sentence information containing the word to search for
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/recommend/synonym
Authorization = this.authorization
Target = this.target
Input Text= this.inputText
Related/Similar activities
GoogleTextAnalysis,GoogleTextClassify, NaverTextSummarize, NaverTextSentiment
BrityCognitiveClassifyIntent
BrityCognitiveClassifyIntent
Overview
This activity card calls BrityCognitive's intent classification API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access BrityCognitiveClassifyIntent service.
In the Text field, enter the text for intention classification.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | URL | String | Y | - | Y | Enter the BrityCognitiveClassifyIntent API address. |
N | Authorization | String | Y | - | N | Enter your Secret Key. |
N | Text | String | Y | - | N | Enter the text to be classified by intent.
|
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. | |
Y | - | - | - | - | Common property of the Cognitive library. |
Example of utilization
To perform intent classification use BrityCognitiveClassifyIntent.
Sample file
Menu > Help > Samples > Sample > Cognitive > BrityCognitiveClassifyIntent
Used variables
this.authorization = Variable to which SecretKey information will be assigned
this.text = text information to classify intent
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/classify/intent
Authorization = this.authorization
Text = this.text
Related/Similar activities
GoogleTextAnalysis,GoogleTextClassify, NaverTextSummarize, NaverTextSentiment
BrityCognitiveExtractEmailKeyword
BrityCognitiveExtractEmailKeyword
Overview
This activity card calls BrityCognitive's Email Keyword Extraction API.
Application procedures
In the [Output] field, enter a variable to store the result of calling in Response.
Enter URL information and Authorization to be called to access BrityCognitiveExtractEmailKeyword service.
In the Input Text field, enter text to extract keywords from.
Card properties
Common | Properties | Type | Required | Unit | Auto-setting | Description |
---|---|---|---|---|---|---|
N | [Output] Response | Variable | Y | - | N | Enter a variable to specify the result of the call. |
N | URL | String | Y | - | Y | BrityCognitiveExtractKeyword API addressEnter. |
N | Authorization | String | Y | - | N | Enter the Secret Key. |
N | Input Text | String | Y | - | N | Enter text to extract short keywords from.
|
Y | - | - | - | - | Common properties of the Cognitive libraries. | |
Y | The internal link is invalid.The internal link is not valid. | - | - | - | - | Common properties of the Cognitive library. |
Y | - | - | - | - | Common properties of the Cognitive library. |
Example of utilization
To Perform keyword extraction use BrityCognitiveExtractEmailKeyword.
Sample file
* Menu > Help > Samples > Sample > Cognitive > BrityCognitive
Used variables
this.Authorization = variable to which SecretKey information will be assigned
this.inputText = Short text information to extract keywords from
Used properties
[Output] Reponse = RESULT
URL = http://127.0.0.1:9001/aicog/extract/email-keyword
Authorization = this. Authorization
InputText= this.inputIText
Related/Similar Activities
BrityCognitiveExtractKeyword, GoogleTextAnalysis, GoogleTextClassify, NaverTextSummarize, NaverTextSentiment