Questions tagged [personality-insights]

The IBM Watson Personality Insights service uses linguistic analytics to infer cognitive and social characteristics, including Big Five, Values, and Needs, from communications that the user makes available, such as email, text messages, tweets, forum posts, and more. By deriving cognitive and social preferences, the service helps users to understand, connect to, and communicate with other people on a more personalized level.

IBM Watson Personality Insights enables deeper understanding of people's personality characteristics, needs, and values to help engage users on their own terms

The Personality Insights service uses linguistic analytics to infer cognitive and social characteristics, including Big Five, Values, and Needs, from communications that the user makes available, such as email, text messages, tweets, forum posts, and more. By deriving cognitive and social preferences, the service helps users to understand, connect to, and communicate with other people on a more personalized level.

Personality Insights is part of the Watson Developer Cloud, IBM's offering to allow creation of cognitive applications, by integrating Watson services from the cloud. The Developer Cloud is part of Bluemix, a Platform-as-a-Service cloud system.

69 questions
5
votes
2 answers

how to call ibm watson api from .net core

I'm trying to call the watson personality insight api, after looking around it seems the solution is to make a .net equivalent of the following curl request. I'm pretty new to this and was wondering if i could get guidance or be pointed to relevant…
lagfvu
  • 597
  • 6
  • 21
2
votes
1 answer

IBM Watson Personality Insights Service : giving bad request as response

I am using NodeJS SDK of watson to test Personality Insights Service but getting the following error: > Error: { Bad Request: Invalid JSON input at line 1, column 2 > at RequestWrapper.formatError…
tester9
  • 93
  • 9
2
votes
1 answer

watson special character, repeat posts, and url handling

in using watson personality insights API, i've already note some odd trends, including many scored at a mean value across dimensions (e.g. agreeableness with many around .27), making me thing it's imputing to something. Upon review I've note a…
nerdlyfe
  • 487
  • 7
  • 21
2
votes
3 answers

How to solve - java.lang.IllegalArgumentException: text cannot be null or empty

I am trying to declare variables at the top of the class so I don't have to declare them constantly when using them. I have done so no error comes up until I want to run the program. My code is below: public class UI extends javax.swing.JFrame…
Alia Su
  • 45
  • 1
  • 2
  • 9
1
vote
1 answer

Node-Red Watson "Unauthorized access" but API key field is filled

I've been trying to use node red to work with watson personality insight. So far so good, I've created an account in IBM Watson Cloud and I generated a new lite project on personality insight. My problem is in node red, when I put my API key on it…
1
vote
1 answer

Personality Insight - Analyzing comments from different users

I am sending a JSON file with multiple comments and reviews from different users, but it seems the response is in general and not for every comment that I am sending through the "content" field in the JSON. Is the API able to return insights for…
Juliana Rivera
  • 1,013
  • 2
  • 9
  • 15
1
vote
3 answers

Convert csv to Json to send to watson-personality insight API with Python

I am trying to convert a csv which contains some reviews that I've extracted. I need to convert to a Json as input to IBM watson personality insights. The csv (WordFinal.csv) with the reviews is like…
Juliana Rivera
  • 1,013
  • 2
  • 9
  • 15
1
vote
1 answer

Different WPI v3 results from Python and Node.js

I am using Watson Personality Insights to get results from a body of text. The results I am getting from the Node.js Personality insights demo are different from the results I get when using the Python SDK. Python script: with open('input_file.txt',…
1
vote
1 answer

getting CORS error when using IBM Watson personality insight service

I am creating a web react web service that needs IBM watson personality insight service. documented here This is my request var test = "some string"; var myHeaders = new…
Tran Triet
  • 1,257
  • 2
  • 16
  • 34
1
vote
1 answer

Best data cleansing practices for IBM Personality Insights

I am testing out Personality Insights and I am curious whether I need to do any data cleansing prior to sending a string of twitter profile's timeline across to IBM. For example, should I remove urls included in the tweets and other twitter…
Dmitry Rastorguev
  • 3,473
  • 4
  • 13
  • 14
1
vote
1 answer

Where to get Authorization Key for IBM Chef Watson API

Can anyone please guide me where to get authorization key for Chef Watson API referred from here? Or is there any test API Explorer for this API such like this for Personality Insights, where don't need to put credentials? I also looked for this…
Muhammad Farhan Habib
  • 1,859
  • 20
  • 23
1
vote
0 answers

Integrating IBM Watson Personality Insights API in my android code

I am having problem integrating personality insights api in my android code. Although I followed a link from androidauthority and later changed the url and service credential values, nothing seem to work, error being THERE WAS AN ERROR. Also I know…
stoicGoyal
  • 13
  • 4
1
vote
1 answer

read a json file from ibm bluemix personality insights and convert into objects in java

Trying to sort out a JSON file retrieved by IBM bluemix personality insight so that I can display the results like. Personality: Adventurousness = 0.6317251869427992%; Personality: Artistic interests = 0.9994303217024612%; etc. Trying to use Gson…
Ryan.Brown
  • 21
  • 3
1
vote
1 answer

Why does the English translation of Lorem Ipsum text yield proper output in IBM Watson Personality Insights, when it should be flagged as an error?

Screenshot of input text as English translation of Lorem Ipsum placeholder text with summary output:
IpshitaC
  • 19
  • 2
1
vote
1 answer

Personality insight input var nodejs

var PersonalityInsightsV2 = require('watson-developer-cloud/personality-insights/v2'); var personality_insights = new PersonalityInsightsV2({ username: '', password: '' }); personality_insights.profile({ text: '
user6780121
1
2 3 4 5