Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.53 KB

README.md

File metadata and controls

28 lines (21 loc) · 1.53 KB

Movie-Casting-Problems 🎬

Solving movie casting problems using a graph-based neural network trained by movie-related datasets. The implemented models in this project can help them to find and choose an appropriate cast for their movie.

The main questions we have answered in this project are:

To answer these questions, we have created a graph named Actors Network and applied the graph autoencoder LoNGAE to this network. Mean squared error of our model on the test data for link weight prediction is 0.005406, after 50 epochs for weights between 0 and 1.

Actors Network

Edge weights and node features of actors network are created using the movie ratings extracted from provided datasets.

Actors Network

Local Neighborhood Graph Autoencoder (LoNGAE)

LoNGAE is available in the reposetory graph-representation-learning. Here you can see how this autoencoder is applied on our graph.

LoNGAE