All Dialogues In F.r.i.e.n.d.s
If you clicked this you know what friends is. So, here is its every dialogue
@kaggle.eemanmajumder_all_dialogues_in_friends
If you clicked this you know what friends is. So, here is its every dialogue
@kaggle.eemanmajumder_all_dialogues_in_friends
We all love f.r.i.e.n.d.s many of us might have wanted to make chatbots like the characters of friends but we never have been able to as there was no dataset of all the script of friends. So, I made one so that you don't have to.
The second file consists of Sentiment analysis of each dialogue using TextBlob
Use it well have fun.😁
CREATE TABLE all_dialogues_in_friends_2 (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "dialogue" VARCHAR
);CREATE TABLE all_dialogues_in_friends_after_sentiment_analysis_nltk (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "dialogue" VARCHAR,
  "preprocess_txt" VARCHAR,
  "total_len" BIGINT,
  "pos_count" BIGINT,
  "neg_count" BIGINT,
  "sentiment" DOUBLE
);CREATE TABLE all_dialogues_in_friends_after_sentiment_analysis_text_blob (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "dialogue" VARCHAR,
  "score" DOUBLE,
  "sentiment" DOUBLE
);Anyone who has the link will be able to view this.