Skip to content

lovincyrus/joyfeed

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 

Repository files navigation

JoyFeed

JoyFeed is a browser extension that analyzes human emotions using machine learning and filters negative posts on unhappy users' social feed based on its sentimental value. Built during AngelHack San Francisco 2016 by Chris Wong & Cyrus Goh, it won HPE’s Haven OnDemand Challenge for the “most innovative cognitive computing solution to augment human intelligence using the HPE Haven OnDemand natural language processing, machine learning, and predictive analytics APIs.”

Structure

  • All extension code is located in the ”extension” folder.
  • All resources (icons, training data, parser etc.) are located in the ”resources” folder.

APIs Used

How To Use

Pre-Installation Instructions

As JoyFeed utilizes the APIs listed above to function, you are required to sign up for each service in order to obtain an API key for all of them.

  1. Clone or download JoyFeed’s repository.
  2. Navigate to HPE Haven OnDemand’s sign up page and sign up for an account.
  3. Navigate to HPE Haven OnDemand’s API keys page and copy the API key.
  4. Open extension/popup.js in your favorite text editor and replace YOUR_HAVEN_API_KEY with the API key copied in the previous step.
  5. Navigate to Microsoft Cognitive Services’ subscription page. You should be prompted to sign in. Once you sign in, scroll down until you see “Emotion - Preview”. Click “Show” to see the API key and copy the key down.
  6. In the same popup.js file as step 3, replace YOUR_MICROSOFT_API_KEY with the API key copied in the previous step.
  7. Navigate to Imgur’s application registration page. You should be prompted to sign in. Once you sign in, use any name to register your application and fill the “Authorization callback URL” with “https://imgur.com” without quotes.
  8. After the registration, navigate to your “Created Apps” page and you should see your newly created app listed. Copy the “Client ID”.
  9. In the same popup.js file as step 3, replace YOUR_IMGUR_API_KEY with the Client ID copied in the previous step.
  10. Save popup.js.

Training HPE Haven OnDemand’s Prediction Model

In order to use machine learning to predict how the user is feeling, we have to train the prediction model first. Since Haven OnDemand’s Predict API can only access models trained on the same account, you will have to train it manually using the dataset we provide.

  1. Navigate to HPE Haven OnDemand’s Train Prediction’s “Try It” page. Sign in to your account if you haven’t done so.
  2. Under “Parameters - file”, click “Select File”. Navigate to your JoyFeed folder and select resources/train.csv.
  3. Under “prediction_field”, enter “Emotion” (case-sensitive).
  4. Under “service_name”, enter “joyfeed” (case-sensitive).
  5. Click the green “Try It” button on the lower right corner.
  6. Wait for the response. It should say “Ready” when it has done training the model.

Installing The Chrome Extension

  1. Navigate to Chrome’s Extensions page.
  2. Check “Developer mode” on the top right corner.
  3. Click the “Load unpacked extension…” button. Select the JoyFeed folder that you have downloaded, and it should appear in the list of extensions.
  4. JoyFeed’s green icon should appear on the row of extensions next to the address bar.
  5. Right click JoyFeed’s green icon and select “Options”. In order to use JoyFeed, you have to grant JoyFeed access to your webcam.

Using JoyFeed

  1. Navigate to Twitter.
  2. Sign in if you’re not logged in.
  3. Click on JoyFeed’s green icon.
  4. Perform some positive/neutral/negative facial expression and click on the white “JoyFeed” button. A white, half-transparent layer will appear over your Twitter timeline.
  5. Leave the popup window open until the half-transparent layer is gone. This should take some time, probably up to a minute or two.
  6. Once the layer has disappeared, you can now close the popup window. You should see the positive tweets highlighted in green and negative tweets highlighted in red. The unhighlighted tweets are determined as neutral.
  7. If you would like to hide the negative tweets, you can click on JoyFeed’s extension to open up the popup window again and click on the “Hide filtered tweets” button. All the tweets highlighted in red will disappear.

Other Information

  • Photos are uploaded using the Imgur API and will be public. We do not store nor collect any of your photos.
  • We do not collect, store nor access any browsing activity.
  • Your Twitter timeline’s tweets are sent directly to HPE Haven OnDemand’s Sentiment Analysis to be processed. We do not store nor collect any of your tweets.
  • Please refer to HPE’s Terms of Service and Privacy Statement for the use of Train Prediction API, Predict API and Sentiment Analysis API.
  • Please refer to Imgur’s Terms of Service and Privacy Policy for the use of Imgur’s API.
  • Please refer to Microsoft Cognitive Services’ Terms and Privacy Statement for the use of Emotion API.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 72.4%
  • HTML 14.5%
  • Java 13.1%