Datasets:

Modalities:
Tabular
Formats:
csv
ArXiv:
Libraries:
Datasets
pandas
License:
ahelk commited on
Commit
eaa96bd
1 Parent(s): 1ef541c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -1,3 +1,37 @@
1
  ---
2
  license: cc-by-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
  ---
4
+
5
+
6
+ # kNN-Embed: Locally Smoothed Embedding Mixtures For Multi-interest Candidate Retrieval
7
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg?style=flat-square)](http://makeapullrequest.com)
8
+ [![arXiv](https://img.shields.io/badge/arXiv-2201.11675-b31b1b.svg)](https://arxiv.org/pdf/2205.06205.pdf)
9
+
10
+ This repo contains the TwitterFaveGraph dataset from our paper [kNN-Embed: Locally Smoothed Embedding Mixtures For Multi-interest Candidate Retrieval](https://arxiv.org/pdf/2205.06205.pdf). <br />
11
+ [[PDF]]()
12
+ [[HuggingFace Datasets]](https://huggingface.co/Twitter)
13
+
14
+ <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
15
+
16
+ ## TwitterFollowGraph
17
+
18
+ TwitterFollowGraph is a bipartite directed graph of users (consumer) nodes to author (producer) nodes where an edge represents a user "following" an author engagement. Each edge is binned into predetermined time chunks which are denoted with ordinals. These ordinals are contiguous and respect time ordering of engagements. In total TwitterFollowGraph has 261𝑀 edges and 15.5𝑀 vertices, with a max-degree of 900𝐾 and a min-degree of 5.
19
+
20
+ The data format is displayed below.
21
+
22
+ | user_index | author_index | time_chunk |
23
+ | ------------- | ------------- | ---- |
24
+ | 0 | 2 | 0 |
25
+ | 1 | 1 | 1 |
26
+ | 2 | 3 | 2 |
27
+
28
+ ## Citation
29
+ If you use TwitterFollowGraph in your work, please cite the following:
30
+ ```bib
31
+ @article{el2022knn,
32
+ title={kNN-Embed: Locally Smoothed Embedding Mixtures For Multi-interest Candidate Retrieval},
33
+ author={El-Kishky, Ahmed and Markovich, Thomas and Leung, Kenny and Portman, Frank and Haghighi, Aria},
34
+ journal={arXiv preprint arXiv:2205.06205},
35
+ year={2022}
36
+ }
37
+ ```