Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -60,20 +60,26 @@ This dataset is a derivative work created by fusing and enriching the following
|
|
| 60 |
* [The Movies Dataset](https://www.kaggle.com/datasets/rounakbanik/the-movies-dataset) by Rounak Banik.
|
| 61 |
* [IMDB Multimodal Vision & NLP Genre Classification](https://www.kaggle.com/datasets/zulkarnainsaurav/imdb-multimodal-vision-and-nlp-genre-classification) by Zulkarnain Saurav.
|
| 62 |
|
| 63 |
-
###
|
| 64 |
|
| 65 |
-
The
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
## Citation Information
|
| 68 |
|
| 69 |
If you use this dataset in your research, please cite it as follows:
|
| 70 |
|
| 71 |
```bibtex
|
| 72 |
-
@misc{
|
| 73 |
-
author
|
| 74 |
-
title
|
| 75 |
-
year
|
| 76 |
-
publisher
|
| 77 |
-
journal
|
| 78 |
-
howpublished = {\url{[https://huggingface.co/datasets/](https://huggingface.co/datasets/ujwal-jibhkate/enriched-movie-dataset-with-multimodal-embeddings
|
| 79 |
}
|
|
|
|
| 60 |
* [The Movies Dataset](https://www.kaggle.com/datasets/rounakbanik/the-movies-dataset) by Rounak Banik.
|
| 61 |
* [IMDB Multimodal Vision & NLP Genre Classification](https://www.kaggle.com/datasets/zulkarnainsaurav/imdb-multimodal-vision-and-nlp-genre-classification) by Zulkarnain Saurav.
|
| 62 |
|
| 63 |
+
### Embedding Generation Process
|
| 64 |
|
| 65 |
+
The primary `content_embedding` column was generated through a multi-step process:
|
| 66 |
+
|
| 67 |
+
1. **Initial Feature Extraction:** For each movie, initial embeddings were generated from different modalities using powerful pre-trained models.
|
| 68 |
+
* **Text Embeddings:** Plot descriptions, taglines, and cast/crew information were passed through a `sentence-transformers/all-MiniLM-L6-v2` model.
|
| 69 |
+
* **Image Embeddings:** Movie posters were passed through the image encoder of the `openai/clip-vit-base-patch32` model. For movies without a poster, a zero vector was used as a neutral placeholder.
|
| 70 |
+
2. **Fusion Model Training:** These separate, high-dimensional vectors were concatenated and fed into a custom fusion model (a Multi-Layer Perceptron). This fusion model was then trained using a multi-task triplet loss objective based on genre, director, and actor similarity.
|
| 71 |
+
3. **Final Embedding Generation:** The `content_embedding` in this dataset is the final 512-dimensional output of this trained fusion model, representing a rich, learned combination of all input modalities.
|
| 72 |
|
| 73 |
## Citation Information
|
| 74 |
|
| 75 |
If you use this dataset in your research, please cite it as follows:
|
| 76 |
|
| 77 |
```bibtex
|
| 78 |
+
@misc{jibhkate2025enriched,
|
| 79 |
+
author = {Ujwal Jibhkate},
|
| 80 |
+
title = {Enriched Movie Dataset with Multimodal Embeddings},
|
| 81 |
+
year = {2025},
|
| 82 |
+
publisher = {Hugging Face},
|
| 83 |
+
journal = {Hugging Face repository},
|
| 84 |
+
howpublished = {\url{[https://huggingface.co/datasets/ujwal-jibhkate/enriched-movie-dataset-with-multimodal-embeddings](https://huggingface.co/datasets/ujwal-jibhkate/enriched-movie-dataset-with-multimodal-embeddings)}},
|
| 85 |
}
|