Advertisement
lamiastella

Untitled

Mar 4th, 2018
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. [jalal@goku sentiment]$ head -n99 runjob.sh 10tweets.txt ; ./runjob.sh
  2. ==> runjob.sh <==
  3. #!/bin/bash
  4.  
  5. n=1
  6.  
  7. while read -u 3 -r line; do
  8. python entity_sentiment.py sentiment-entities-text "$line" > "$((n++)).json"
  9. done 3< 10tweets.txt
  10.  
  11. ==> 10tweets.txt <==
  12. Trump on the other hand goes all in on water boarding AND some. #GOPDebate
  13. RT @wpjenna Donald Trump promises that he will not touch the 2nd amendment -- "unless we're going to make it stronger."
  14. Trump 23%, Rubio 19%, Kasich & Bush 14%, Christie 10%, Cruz 9% #NHPrimary
  15. @realDonaldTrump Thank you for saying you won't use vulger language anymore. Talk about Sanders & Clinton. Take Cruz as VP. Mexican votes!!!
  16. RT @SurfPHX Mr. Trump @realDonaldTrump tweeted 25 minutes ago. You all do realize, that our future President hardly sleeps. He's a Fighter and a Worker!
  17. go, Bernie #DemDebate
  18. Sanders calls out Clinton on taking Foreign Policy advice from Warmonger Henry Kissinger https://t.co/xT5J4uh4m4 via @YouTube
  19. Cruz, Rubio, and the Moral Bankruptcy of Progressive Identity Politics https://t.co/kSQstJXtKO via @NRO
  20. RT @scarylawyerguy "Who does Bernie Sanders listen to on foreign policy." - A question Hillary had to raise b/c the media will not. #DemDebate
  21. Why Did U of California Fire Tenured Riverside Professor? / Ted Cruz and Higher Ed -- ... - https://t.co/zFxa4Q70wh
  22. [jalal@goku sentiment]$ ls
  23. 1.json 1000tweets.txt 10tweets.txt aclImdb aclImdb_v1.tar.gz credentials.json entity_sentiment.py gc_test.py reviews runjob.sh sentiment-samples.tar sentiment.py
  24. [jalal@goku sentiment]$ cat 1.json
  25. Mentions:
  26. Name: "Professor"
  27. Begin Offset : 47
  28. Content : Professor
  29. Magnitude : 0.0
  30. Sentiment : 0.0
  31. Type : 2
  32. Salience: 0.47092151641845703
  33. Sentiment:
  34.  
  35. Mentions:
  36. Name: "Did U of California Fire Tenured Riverside"
  37. Begin Offset : 4
  38. Content : Did U of California Fire Tenured Riverside
  39. Magnitude : 0.0
  40. Sentiment : 0.0
  41. Type : 1
  42. Salience: 0.2889040410518646
  43. Sentiment:
  44.  
  45. Mentions:
  46. Name: "Ted Cruz"
  47. Begin Offset : 60
  48. Content : Ted Cruz
  49. Magnitude : 0.0
  50. Sentiment : 0.0
  51. Type : 1
  52. Salience: 0.1294257491827011
  53. Sentiment:
  54.  
  55. Mentions:
  56. Name: "https://t.co/zFxa4Q70wh"
  57. Begin Offset : 92
  58. Content : https://t.co/zFxa4Q70wh
  59. Magnitude : 0.0
  60. Sentiment : 0.0
  61. Type : 1
  62. Salience: 0.0676858201622963
  63. Sentiment:
  64.  
  65. Mentions:
  66. Name: "Higher Ed"
  67. Begin Offset : 73
  68. Content : Higher Ed
  69. Magnitude : 0.0
  70. Sentiment : 0.0
  71. Type : 1
  72. Salience: 0.043062858283519745
  73. Sentiment:
  74.  
  75. [jalal@goku sentiment]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement