contact us

Use the form on the right to contact us.

You can edit the text in this area, and change where the contact form on the right submits to, by entering edit mode using the modes on the bottom right.

665 Broadway, Suite 609
New York, NY
USA

The NYU Cinema Research Institute brings together innovators in film and media finance, production, marketing, and distribution to imagine and realize a new future for artist-entrepreneurs. 

Archive

Filtering by Category: Film Personality

Your Brain On Film

Forest Conner

One of the hardest things to do is convince someone that experiences can be (at least partially) objective. This is especially true in the arts, where the most passionate fans and critics tend to have deeply held personal beliefs about the qualities of the art they observe. This makes it especially difficult for someone like myself who tries to find the commonalities within film and use them to predict what someone may like or dislike.

There is no way that I can predict with any real accuracy how another human being will respond to a film, right? I mean, since we're all such unique, precious snowflakes.

As it turns out, our brains present the opposite argument. In much the same way our occipital lobe is active as we sense visual activity, so to do certain areas of our brains respond as we watch a film. And according to Uri Hasson, a psychologist at Princeton, they activate in pretty much the same way for all of us.

Hasson showed an audience a scene from (the incredible) The Good, The Bad, and The Ugly and measured the viewers brain activity using a functional MRI. He saw that the same parts of the participants' brains lit up when responding to the film. When doing this experiment with Dog Day Afternoon, "there was a significant correlation in activity across nearly 70 percent of [the particiants'] cortex." 

What does this really mean? Well, much of the similarities in brain activity are related to things like visual and auditory cues. Audiences of highly directed narrative films tend to look at the same places and listen for the same things all at the same time. Not quite as foreboding as it first appears, but there are plenty of other areas of the brain (more devoted to high level thought) that are also activated.

People often scoff at the idea that films have personalities, and as such can be parsed into chunks that can be used to find an audience. But consider the fact that, for some films at least, most people have identical patterns of brain activity. And if we determine that someone enjoys a film that activates those areas of the cortex, could we assume that different films with similar effects would also be enjoyed by that viewer?

Of course I'm not advocating that everyone step into an fMRI machine in order to get movie recommendations. To me, this study simply provides the foundations for the idea that, maybe, audiences are more similar to each other than they are different and there is a better way to explore those similarities. 

Film Personality

Forest Conner

The following was originally written for the VHX Developers Blog as part of a writeup about a "Hack Day" project where employees are encouraged to explore a project that interests them. I used this time to develop a working MVP to determine Film Personality for already released films.

As the resident data scientist, I get to do a lot of interesting things, mostly centered around understanding how to make our platform better for our publishers and their customers. But for our last hack day, I was looking for a way to better understand the content itself. Enter Film Personality.


FILM PERSONALITY

The ideas stems from something in Brand Strategy called "brand personality," which postulates that there are five major dimensions of personality: Excitement, Sincerity, Competence, Sophistication, and Ruggedness.

Sounds a little hokey, no? While reducing all human traits into five dimensions isn't a great way to describe people, I thought it might serve as a better shorthand for discussing films than the current standard of genre, where the description "Drama" could apply to almost anything (so long as no one is enjoying themselves.)

There are a few key elements needed for putting this together: A common language used to describe films, enough people using this common language, and the ability to quickly parse their conversations to extract the key descriptive words. I found it useful to consider critics' reviews as that source of common language. They say similar things about similar types of films, even if they disagree on the quality of the film. The use of words like "exciting," "intelligent," and "imaginative" are still used, even if the critic then follows it up by saying, "but I still hated this movie."

I figured the simplest way to test this out was to use the Rotten Tomatoes API to pull in reviews for a given film and parse those using the lovely Python package Natural Language Toolkit, or NLTK. I'll walk you through a bit of the code, which turned out to be surprisingly simple for an MVP:

The first API call to Rotten Tomatoes returns the JSON of the movie the user requested, based on matching title. It's dependent on two things: 1) the Rotten Tomatoes search, and 2) that the user actually spells the film title correctly. Once we have the movie ID, we call the API again to get the reviews.

Once we get the JSON containing the review snippets, we need to tokenize the parts of speech using NLTK. This returns a list of tuples, each containing an individual word paired with an identifier ('NN' for nouns, 'VB' for verb, etc.) The parts of speech that will be most descriptive of the film's personality are verbs in the gerund form, that is ending in "-ing," and adjectives.

8a244f_0d27c93641234972a02161799be3b7e7.png

In order to associate these words with the film dimensions we defined earlier, I created a small dictionary including some seed words and added synonyms from NTLK's Wordnet synonym set. I also removed the words "good" and "bad" because that's, like, your opinion, man.

What we get when we run all this madness is a list of descriptive words from the reviews, and a score for each of the five dimensions. While this is currently nothing more than a proof of concept, it shows that we can mine this data for specific words, link those words to personality dimensions, and that this dimensions actually align with our conceptions of the films that are input.

There are definitely areas for improvement. The dictionary needs to be much larger to account for more words, and I would love to bring in full reviews rather than just the snippets from Rotten Tomatoes. Hopefully these iterations will show that there is a better way to define films, and that perhaps film personality is it.