Wikipedia dump for word embedding. Splits: graph
| 544 | |
| 545 | |
| 546 | class Wikipedia(Dataset): |
| 547 | """ |
| 548 | Wikipedia dump for word embedding. |
| 549 | |
| 550 | Splits: |
| 551 | graph |
| 552 | """ |
| 553 | def __init__(self): |
| 554 | super(Wikipedia, self).__init__( |
| 555 | "wikipedia", |
| 556 | urls={ |
| 557 | "graph": "https://www.dropbox.com/s/q6w950e5f7g7ax8/enwiki-latest-pages-articles-sentences.txt.gz?dl=1" |
| 558 | } |
| 559 | ) |
| 560 | |
| 561 | |
| 562 | class Math(Dataset): |