Datasets:

Modalities:
Tabular
Text
Formats:
csv
Languages:
English
Size:
< 1K
Libraries:
Datasets
pandas
License:
shahagam4 commited on
Commit
acc0c21
·
verified ·
1 Parent(s): 53bc7c6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +107 -3
README.md CHANGED
@@ -1,3 +1,107 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - video-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - finance
9
+ ---
10
+
11
+ # VideoConviction: A Multimodal Benchmark for Human Conviction and Stock Market Recommendations
12
+
13
+ **Paper**: [VideoConviction: A Multimodal Benchmark for Human Conviction and Stock Market Recommendations](https://doi.org/10.1145/3711896.3737417)
14
+ **Conference**: ACM SIGKDD 2025
15
+ **Authors**: Michael Galarnyk, Veer Kejriwal, Agam Shah, Yash Bhardwaj, Nicholas Watney Meyer, Anand Krishnan, Sudheer Chava
16
+
17
+ ## Dataset Summary
18
+
19
+ VideoConviction is a multimodal dataset curated from financial influencer (“finfluencer”) videos on YouTube. It provides fine-grained annotations of investment recommendations, human conviction levels, and associated metadata. The dataset is designed to benchmark models that can jointly understand language, vision, and social signals to make sense of financial advice given by influencers.
20
+
21
+ This dataset facilitates research in areas such as:
22
+
23
+ * Investment recommendation detection
24
+ * Human conviction estimation
25
+ * Finfluencer behavior modeling
26
+ * Multimodal understanding and reasoning
27
+
28
+ ## Dataset Structure
29
+
30
+ Each row in the dataset corresponds to a specific segment within a YouTube video where a stock market action is recommended or discussed. The following features are included:
31
+
32
+ ### Primary Annotation Fields
33
+
34
+ * `id`: Generated ID for each video (from Label Studio).
35
+ * `derived_inner_id`: Generated inner ID for each video (from Label Studio).
36
+ * `video_id`: YouTube video identifier.
37
+ * `start`: Start time of the annotated video segment.
38
+ * `end`: End time of the annotated video segment.
39
+ * `action`: Suggested investment action (e.g., Buy, Hold, Don’t Buy, Sell, Short Sell, Unclear).
40
+ * `action_source`: Source within the video from which the action was extracted (e.g., Title, Introduction, Conclusion, Selected Region).
41
+ * `conviction_score`: Annotated conviction level of the recommendation (1/3 – low, 2/3 – medium, 3/3 – high).
42
+ * `ticker_name`: Stock ticker symbol (e.g., AAPL).
43
+ * `action_date`: Date associated with the recommendation.
44
+ * `price`: Recommended price to buy the stock at.
45
+ * `quantity`: Recommended number of shares.
46
+ * `is_rec_present`: Boolean indicating if the video includes any stock recommendation (Yes/No).
47
+
48
+ ### Video Metadata
49
+
50
+ * `video_title`: Title of the YouTube video.
51
+ * `original_inner_id`: Original inner ID (for data validation).
52
+ * `original_video_title`: Video title from YouTube metadata.
53
+ * `publishedAt`: Publication date of the video.
54
+ * `channelId`: YouTube channel ID.
55
+ * `channelTitle`: Name of the YouTube channel.
56
+ * `videoDescription`: Full video description.
57
+ * `tags`: YouTube tags.
58
+ * `defaultAudioLanguage`: Default audio language.
59
+ * `duration`: Full duration of the video.
60
+ * `isCaptionAvailable`: Boolean indicating if captions are available.
61
+
62
+ ### Social Engagement
63
+
64
+ * `viewCount`: Number of views.
65
+ * `likeCount`: Number of likes.
66
+ * `favoriteCount`: Number of favorites.
67
+ * `commentCount`: Number of comments.
68
+ * `comments`: Actual user comments on the video.
69
+
70
+ ### Channel Metadata
71
+
72
+ * `channelDescription`: Description of the channel.
73
+ * `channelViewCount`: Total views across the channel.
74
+ * `channelSubscriberCount`: Subscriber count.
75
+ * `videoCount`: Total videos on the channel.
76
+ * `channelCategory`: Category/type of content on the channel.
77
+
78
+ ### Multimodal Content
79
+
80
+ * `transcript`: Full transcript of the video.
81
+ * `youtube_video_url`: Direct link to the YouTube video.
82
+ * `segment_transcript`: Transcript of the specific annotated segment.
83
+
84
+ ## Citation
85
+
86
+ If you use this dataset, please cite our paper:
87
+
88
+ ```bibtex
89
+ @inproceedings{galarnyk2025videoconviction,
90
+ author = {Michael Galarnyk and Veer Kejriwal and Agam Shah and Yash Bhardwaj and Nicholas Watney Meyer and Anand Krishnan and Sudheer Chava},
91
+ title = {VideoConviction: A Multimodal Benchmark for Human Conviction and Stock Market Recommendations},
92
+ booktitle = {Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V.2 (KDD '25)},
93
+ year = {2025},
94
+ location = {Toronto, ON, Canada},
95
+ pages = {12},
96
+ publisher = {ACM},
97
+ doi = {10.1145/3711896.3737417}
98
+ }
99
+ ```
100
+
101
+ ## Contact
102
+
103
+ For questions or collaborations, please contact:
104
+
105
+ * Agam Shah: [[email protected]](mailto:[email protected])
106
+ * Veer Kejriwal: [[email protected]](mailto:[email protected])
107
+ * Michael Galarnyk: [[email protected]](mailto:[email protected])