ujwal-jibhkate commited on
Commit
72b5958
·
verified ·
1 Parent(s): 29706d0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -9
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
- ### Annotations
64
 
65
- The dataset was annotated automatically. The primary annotation is the `content_embedding` column, generated as described above. Due to the nature of the source data, some fields (like `poster_byte`) may be sparse.
 
 
 
 
 
 
66
 
67
  ## Citation Information
68
 
69
  If you use this dataset in your research, please cite it as follows:
70
 
71
  ```bibtex
72
- @misc{[your_username_2025_enriched_movie_embeddings],
73
- author = {[Your Name Here]},
74
- title = {Enriched Movie Dataset with Multimodal Embeddings},
75
- year = {2025},
76
- publisher = {Hugging Face},
77
- journal = {Hugging Face repository},
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
  }