Remove classifying-genres-of-movies-by-looking-at-the-poster-a-neural-approach
article thumbnail

Classifying genres of movies by looking at the poster - A neural approach

Depends on the Definition

In this article, we will apply the concept of multi-label multi-class classification with neural networks from the last post, to classify movie posters by genre. First we import the usual suspects in python. import numpy as np import pandas as pd import glob import scipy.

Python 40