Name
stringlengths
2
62
Script
stringlengths
72
558k
I am Sam
"\"I AM SAM\"\r\n\r\n Screenplay by\r\n\r\n (...TRUNCATED)
Book of Eli, The
"THE BOOK OF ELI\r\n \r\n \r\n \r\n Wr(...TRUNCATED)
Sex, Lies and Videotape
"\" s e x , l i e s , a n d v i d e o t a p e \" - by Steven Soderbergh 4th Draft\r\n\r\n\r\n\t\(...TRUNCATED)
Passion of Joan of Arc, The
"THE PASSION OF JOAN OF ARC\r\n\r\n\r\n\r\n Written by\r\n\r\n (...TRUNCATED)
Wall Street
"\"WALL STREET\"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t (...TRUNCATED)
Belle
"BELLE\r\n\r\n\r\n\r\n\r\n Written by\r\n\r\n (...TRUNCATED)
Beavis and Butt-head Do America
"Beavis and Butt-Head Do America - by Mike Judge and Joe Stillman\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\r\(...TRUNCATED)
Good Will Hunting
"GOOD WILL HUNTING\r\n\r\n\r\n \"GOOD WILL HUNTING\"\r\n\r\n (...TRUNCATED)
Citizen Kane
"CITIZEN KANE\r\n\r\n\r\n Citizen Kane \r\n\r\n (...TRUNCATED)
Henry Fool
"HENRY FOOL\r\n\r\n\r\n\r\n Written by\r\n\r\n (...TRUNCATED)

Movie Scripts Dataset

The Movie Scripts Dataset consists of scripts from 1,172 movies, providing a comprehensive collection of movie dialogues and narratives. This dataset is designed to support various natural language processing (NLP) tasks, including dialogue generation, script summarization, and text analysis.

Details

The dataset contains 2 columns:

  • Name: The title of the movie.
  • Script: The full script of the movie in English.

Usage

The Movie Scripts Dataset is ideal for training and evaluating models for dialogue generation, script summarization, and other text analysis tasks. It offers a diverse set of scripts that can be used to explore various aspects of movie dialogues and narratives.

Example Usage

Here’s a quick example of how to load and explore the dataset:

from datasets import load_dataset

movies = load_dataset("IsmaelMousa/movies", split="train")

sample = movies[5]
print(f"Movie Name: {sample['Name']}")
print(f"Script: {sample['Script'][10000:11000]}...")

Output

Movie Name: Belle
Script: n this
          moment, but hold this in your
          heart...you are loved...Just as
          I loved your mother.
A tear spills and DIDO's little fingers come up to wipe it
from his cheek. He presses his lips to her hand, sobbing a
moment, and then he is gone - to stay any longer would be
too much to bare.
                                                                 6.


7   INT. KENWOOD HOUSE. STAIRS/ENTRANCE HALL/GALLERY - DAY. 2    7    *

    ON ELIZABETH seated at the grand staircase as LADY MARY and
    DIDO emerge. Like ELIZABETH, DIDO is now freshly dressed in
    rich silks, an adorable sight as they move through corridors
                        ELIZABETH
              Are you...a nee-gro?
    ELIZABETH makes her way across...taking her aunt's hand as
    all three walk. DIDO is silent.

                        ELIZABETH (CONT'D)
              Are you what they call `a negro?'
              I heard them talking.
                        LADY M...

Source

The scripts in this dataset are sourced from various movie script repositories and are provided in their original form.

License

This dataset is provided under the Apache 2.0 license for both personal and commercial use, with proper attribution.

Downloads last month
5
Edit dataset card