diff --git a/.gitattributes b/.gitattributes index bed0738c7eeb449bca98b5d2f33c89a1ee56349a..c2df6d438aa83aafba3dd60e716636e9577d5f03 100644 --- a/.gitattributes +++ b/.gitattributes @@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text # Video files - compressed *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text +*.jsonl filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..bf48cdbd3b6f7b3c69a80dee1cb7cd49c6555c05 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +task/ +hold/ +code/ +.DS_Store diff --git a/README.md b/README.md index 7da79263d0e701a53a0d662d245c4fc3db39b287..124f0973971572d7ff8ec5f7d504cbf8f889514e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,129 @@ ---- -license: cc-by-4.0 ---- +--- +license: cc-by-4.0 +pretty_name: "Leipzig Corpora Frequency Data" +tags: + - language + - frequency + - corpus + - linguistics + - nlp +configs: + - config_name: default + data_files: "base/**/*.jsonl" + default: true +--- + +# Leipzig Corpora Frequency Data + +Word frequency lists, sentence corpora, and co-occurrence data +from the Leipzig Corpora Collection, converted to JSON/JSONL. + +Covers hundreds of languages across news, web, Wikipedia, +and mixed sources. Each corpus includes sentences, token +frequencies, source provenance, and statistical co-occurrence +pairs. + +## Contents + +``` +base/ + / + --/ + metadata.json + sentences.jsonl + strings.jsonl + sources.json + cooccurrence.sentence.jsonl + cooccurrence.neighbor.jsonl +``` + +Example: `base/afr/news-2020-30K/sentences.jsonl` + +Languages use ISO 639-3 codes, sometimes with region suffixes +(e.g. `ara-eg` for Egyptian Arabic). + +## Files per corpus + +| File | Format | Description | +|------|--------|-------------| +| `metadata.json` | JSON | Language, source type, date, size, original filename | +| `sentences.jsonl` | JSONL | One sentence per line with source article ID | +| `strings.jsonl` | JSONL | Token frequency list (words and punctuation) | +| `sources.jsonl` | JSONL | Source article URLs and dates | +| `cooccurrence.sentence.jsonl` | JSONL | Word pairs appearing in the same sentence | +| `cooccurrence.neighbor.jsonl` | JSONL | Word pairs appearing adjacent to each other | + +"Strings" instead of "words" because the list includes punctuation, +special characters, and other non-word tokens alongside actual words. + +## Usage + +```python +from datasets import load_dataset + +ds = load_dataset("cluesurf/leipzig-frequency") +``` + +## Record schemas + +### metadata.json + +```json +{ + "language": "afr", + "source": "news", + "date": "2020", + "size": "30K", + "file": "afr_news_2020_30K" +} +``` + +### sentences.jsonl + +```json +{ "id": 1, "text": "'1,5 miljoen grafte vir Gauteng absurd'", "source_id": 837 } +``` + +### strings.jsonl + +```json +{ "id": 101, "text": "die", "frequency": 30994 } +``` + +### sources.jsonl + +```json +{ "id": 1, "url": "https://carletonvilleherald.com/...", "date": "2020-05-17" } +``` + +### cooccurrence.sentence.jsonl + +```json +{ "string_1_id": 116, "string_2_id": 4688, "frequency": 5, "significance": 7.61 } +``` + +### cooccurrence.neighbor.jsonl + +```json +{ "string_1_id": 2563, "string_2_id": 14, "frequency": 6, "significance": 13.17 } +``` + +## Source + +Downloaded from the [Leipzig Corpora Collection](https://wortschatz.uni-leipzig.de/en/download) +at the University of Leipzig. + +Original archives are `.tar.gz` files containing tab-delimited +`.txt` data following the Wortschatz database schema. + +## Sources + +- [Leipzig Corpora Collection](https://wortschatz.uni-leipzig.de/en/download) +- [Wortschatz project](https://wortschatz.uni-leipzig.de) +- D. Goldhahn, T. Eckart, U. Quasthoff: Building Large Monolingual + Dictionaries at the Leipzig Corpora Collection: From 100 to 200 + Languages. In: Proceedings of LREC, 2012. + +## License + +CC-BY-4.0, as specified by the Leipzig Corpora Collection. diff --git a/base/afr-za/web-2013-10K/metadata.json b/base/afr-za/web-2013-10K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..df45651fbd0feed06f08ddc16d8e7a8c6b106afd --- /dev/null +++ b/base/afr-za/web-2013-10K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr-za", + "source": "web", + "date": "2013", + "size": "10K", + "file": "afr-za_web_2013_10K" +} diff --git a/base/afr-za/web-2015-1M/metadata.json b/base/afr-za/web-2015-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..da0a329994a7f26f121aee886f8704b460f07aa4 --- /dev/null +++ b/base/afr-za/web-2015-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr-za", + "source": "web", + "date": "2015", + "size": "1M", + "file": "afr-za_web_2015_1M" +} diff --git a/base/afr-za/web-2020-1M/metadata.json b/base/afr-za/web-2020-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..7c9e7dbb546e49568cf992dca6a7b26b57a076b7 --- /dev/null +++ b/base/afr-za/web-2020-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr-za", + "source": "web", + "date": "2020", + "size": "1M", + "file": "afr-za_web_2020_1M" +} diff --git a/base/afr-za/web-2023-1M/metadata.json b/base/afr-za/web-2023-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ce22b411f37a77b76f228c932347e48a06c6ec8a --- /dev/null +++ b/base/afr-za/web-2023-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr-za", + "source": "web", + "date": "2023", + "size": "1M", + "file": "afr-za_web_2023_1M" +} diff --git a/base/afr/mixed-2019-1M/cooccurrence.neighbor.jsonl b/base/afr/mixed-2019-1M/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e0215c5add090eeace89e7b174ce5d404cf1fba9 --- /dev/null +++ b/base/afr/mixed-2019-1M/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71aa538193fe8257feb267271e0fccbd7431331f95f2f52748ae64550062395 +size 33032171 diff --git a/base/afr/mixed-2019-1M/cooccurrence.sentence.jsonl b/base/afr/mixed-2019-1M/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d06d4909d4b762600fd28739d882d24d72700bab --- /dev/null +++ b/base/afr/mixed-2019-1M/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0b1c35514b788642c7f4ec58dd876aba3be9c9f1c22520162f32e3a696d30e +size 198700500 diff --git a/base/afr/mixed-2019-1M/metadata.json b/base/afr/mixed-2019-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..a6752d2c2191c7967d7addb7d5ad751cac2baa04 --- /dev/null +++ b/base/afr/mixed-2019-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "mixed", + "date": "2019", + "size": "1M", + "file": "afr_mixed_2019_1M" +} diff --git a/base/afr/mixed-2019-1M/sentences.jsonl b/base/afr/mixed-2019-1M/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e587df0fbb9789899ae1a2b6845484b45581851e --- /dev/null +++ b/base/afr/mixed-2019-1M/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999f69f911687b5afee4db626d3d75647a4766ae3169a6f506f9000a24035ea8 +size 146048983 diff --git a/base/afr/mixed-2019-1M/sources.jsonl b/base/afr/mixed-2019-1M/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c2f6237d7732cb065d613574923336a9a1986de5 --- /dev/null +++ b/base/afr/mixed-2019-1M/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c6ad428769375d8ad62f2e9421da317701d9afd62eaf336843b7392686b96f +size 54333136 diff --git a/base/afr/mixed-2019-1M/strings.jsonl b/base/afr/mixed-2019-1M/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4cbc99499130e1a4d9db3be8190fc492f592cf48 --- /dev/null +++ b/base/afr/mixed-2019-1M/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c6bb1f08341653b6fc638b7c9ddec81512b3cb6272749a075f2a99b5390a539 +size 27906784 diff --git a/base/afr/news-2016-300K/cooccurrence.neighbor.jsonl b/base/afr/news-2016-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1db362eb5da132760ab0a10838e936056673e811 --- /dev/null +++ b/base/afr/news-2016-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf280394441ffc5582be50510772ae24ac74e0cdd1f15f277c690d76a630608 +size 13393622 diff --git a/base/afr/news-2016-300K/cooccurrence.sentence.jsonl b/base/afr/news-2016-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..032a37fc1d487cb53369eac1360db9b00e0e26d5 --- /dev/null +++ b/base/afr/news-2016-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732d573a9d36eb33d1c31cc530543c76a1f28d9a57d5dd1e97a93edc42497c40 +size 82934644 diff --git a/base/afr/news-2016-300K/metadata.json b/base/afr/news-2016-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cf106331514a569047fb8228e1606907c6a954bb --- /dev/null +++ b/base/afr/news-2016-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "news", + "date": "2016", + "size": "300K", + "file": "afr_news_2016_300K" +} diff --git a/base/afr/news-2016-300K/sentences.jsonl b/base/afr/news-2016-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ab617f13ed2f5741b4b588f80256e3fb5afc61bf --- /dev/null +++ b/base/afr/news-2016-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b9186ee342a0bdfec8e134839568bf480ae57efb65f080e5133ceb54227980 +size 45097004 diff --git a/base/afr/news-2016-300K/sources.jsonl b/base/afr/news-2016-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ed3578488b7bddae1de31dadcbd3c3216b230e70 --- /dev/null +++ b/base/afr/news-2016-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f73789cf709c0455d5ba77720e69039ea7f5c1a59bdd4c4f086a165788753e +size 3357149 diff --git a/base/afr/news-2016-300K/strings.jsonl b/base/afr/news-2016-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6a98878dec4f0c31d627ef23469c1206b77f975f --- /dev/null +++ b/base/afr/news-2016-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1b864af11513855efed98a9efb13cd50999f1c6b0ecf816773d1da5085b688 +size 9741875 diff --git a/base/afr/news-2017-300K/cooccurrence.neighbor.jsonl b/base/afr/news-2017-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..dfa542c34d68e1bf5913686039336c82d83b0a3f --- /dev/null +++ b/base/afr/news-2017-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75f40ed6ae61aa8ec2d741cdde91c5bf60d9bfe4066a2286b072ca270b5b0144 +size 12664975 diff --git a/base/afr/news-2017-300K/cooccurrence.sentence.jsonl b/base/afr/news-2017-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a7a0cc815ac7305d431bfe8e5ac3d8cabf007c71 --- /dev/null +++ b/base/afr/news-2017-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5649ede768b69173f3889770d30c2884a893abc67e9d06dcb169fc57c9dce8bd +size 74202614 diff --git a/base/afr/news-2017-300K/metadata.json b/base/afr/news-2017-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..42c1a3dc6d261b65b0578ee2d66dd0ce5c74fbf4 --- /dev/null +++ b/base/afr/news-2017-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "news", + "date": "2017", + "size": "300K", + "file": "afr_news_2017_300K" +} diff --git a/base/afr/news-2017-300K/sentences.jsonl b/base/afr/news-2017-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a3fbe31fccff7a4434f4e680aea655018ad2abbf --- /dev/null +++ b/base/afr/news-2017-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856b238b2b421e71212303502251bb456c1daa90bd37ade8b7e27e8dcaab8832 +size 44296480 diff --git a/base/afr/news-2017-300K/sources.jsonl b/base/afr/news-2017-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b1b43cefee039ea91d167cf3130fa4a255fd32db --- /dev/null +++ b/base/afr/news-2017-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f14dfb8f52c545f4ac8532c95e217e34ddb6254aa0693f3674f38e6f651e9d91 +size 1538541 diff --git a/base/afr/news-2017-300K/strings.jsonl b/base/afr/news-2017-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ab88bb883fb378d3827414eaf48a2d06242e3ae7 --- /dev/null +++ b/base/afr/news-2017-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6e7c8857c667acc2770b7b226493982307099e43e95d518ee7565f18f6105f +size 8962061 diff --git a/base/afr/news-2019-10K/cooccurrence.neighbor.jsonl b/base/afr/news-2019-10K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..67637c871fd0541eafb152c125b1650f3e230854 --- /dev/null +++ b/base/afr/news-2019-10K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd11a856afca2b9112650690c49c529f63fdae31bb74cfd3fad8e131dfc78ef +size 608888 diff --git a/base/afr/news-2019-10K/cooccurrence.sentence.jsonl b/base/afr/news-2019-10K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..59f57b407795377aae66d05fd41d9ee819880a42 --- /dev/null +++ b/base/afr/news-2019-10K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78dfce43141cf383f7d4c681618af07039b1805075d382f4dbe9b37e6fb50409 +size 2598626 diff --git a/base/afr/news-2019-10K/metadata.json b/base/afr/news-2019-10K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..c7b42dfd9950e06a816c745a077c6384d056cd8a --- /dev/null +++ b/base/afr/news-2019-10K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "news", + "date": "2019", + "size": "10K", + "file": "afr_news_2019_10K" +} diff --git a/base/afr/news-2019-10K/sentences.jsonl b/base/afr/news-2019-10K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..eb9d0be7ae8d1ff98d6c04c35f08e8dfa05777d7 --- /dev/null +++ b/base/afr/news-2019-10K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d4ba27b7c2a7bcf48412db809ccf719f879bacf7eb7ec4fa51e503116c7af1 +size 1487196 diff --git a/base/afr/news-2019-10K/sources.jsonl b/base/afr/news-2019-10K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0ac0ec50d8174e622a209bc54d25d9ed9ad38b9d --- /dev/null +++ b/base/afr/news-2019-10K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52ca024ce5a09709f51ea6ba3c554fa1453ee9b0f6571306bde4efe0305f217 +size 188512 diff --git a/base/afr/news-2019-10K/strings.jsonl b/base/afr/news-2019-10K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8cf05cc2552d5dccce15bc10fd95c445fb22d23c --- /dev/null +++ b/base/afr/news-2019-10K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba614d073a70bde7eaa4b6ac17f027cda0d615b1eca7c4e45852f35583e4df0 +size 1077679 diff --git a/base/afr/news-2020-30K/cooccurrence.neighbor.jsonl b/base/afr/news-2020-30K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..eca6f4726eebe46b8ee12c84fcc00768405d8c69 --- /dev/null +++ b/base/afr/news-2020-30K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80265037490a589c8c7965f67f94488efdd5ce9f53d7db812c5a799192bf213c +size 1764914 diff --git a/base/afr/news-2020-30K/cooccurrence.sentence.jsonl b/base/afr/news-2020-30K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a43b67931e1ea852a6cd4f55337da9faa3e50a4f --- /dev/null +++ b/base/afr/news-2020-30K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e24473f07ddd7895d04464e9e490b798e6ee681c397655cb0411c381e9da2c +size 9842916 diff --git a/base/afr/news-2020-30K/metadata.json b/base/afr/news-2020-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d4a313c4f06437fce118bd0e769761e78771e093 --- /dev/null +++ b/base/afr/news-2020-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "news", + "date": "2020", + "size": "30K", + "file": "afr_news_2020_30K" +} diff --git a/base/afr/news-2020-30K/sentences.jsonl b/base/afr/news-2020-30K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a10c79a77a1228c64a9beb9426a85704cc2c5f6a --- /dev/null +++ b/base/afr/news-2020-30K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e51c13d08505c3ae7eac92dd9cb8fc8616b6005a6fcfb5bf2cb7c3fdd7d5a23 +size 4367874 diff --git a/base/afr/news-2020-30K/sources.jsonl b/base/afr/news-2020-30K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d750eb54ed780fdd45924e01cfc8090b00f6d909 --- /dev/null +++ b/base/afr/news-2020-30K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7a66afd526d223008edba74765d36ea44883e0593bfe81862430a8d3577fcb +size 312126 diff --git a/base/afr/news-2020-30K/strings.jsonl b/base/afr/news-2020-30K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..99d3aa3b1283e71fde9bf5a3164a6354fec5bffb --- /dev/null +++ b/base/afr/news-2020-30K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4875bf1a500358cbb6ef3017c6a4d564d987473d613b2115fd8d6528eeb863 +size 1886577 diff --git a/base/afr/newscrawl-2011-300K/cooccurrence.neighbor.jsonl b/base/afr/newscrawl-2011-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1c9e622c21fc5190386e7033190fad22ec9acd9e --- /dev/null +++ b/base/afr/newscrawl-2011-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247e47a071c2570dcdc5a50c8ace65c141e7135c840dee1e872bf6605033fdb1 +size 13290008 diff --git a/base/afr/newscrawl-2011-300K/cooccurrence.sentence.jsonl b/base/afr/newscrawl-2011-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8c2c9e281a3234ee2aa18f1891e829ed6f902101 --- /dev/null +++ b/base/afr/newscrawl-2011-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9217fe8d534dbe2f9729cca9570635e408ef71064d2a3ce484b0afc83ec74e7a +size 77282412 diff --git a/base/afr/newscrawl-2011-300K/metadata.json b/base/afr/newscrawl-2011-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..7b5df3b698e6761f72fd40da0e5409c513f415de --- /dev/null +++ b/base/afr/newscrawl-2011-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "newscrawl", + "date": "2011", + "size": "300K", + "file": "afr_newscrawl_2011_300K" +} diff --git a/base/afr/newscrawl-2011-300K/sentences.jsonl b/base/afr/newscrawl-2011-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..dad16f3d22219aa6d8544c0b4b0da69cd1346ff6 --- /dev/null +++ b/base/afr/newscrawl-2011-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e14e19102c6f0e1b9cf207ff98ba35f639703a34c8137001ee4f408ac43a575 +size 45960742 diff --git a/base/afr/newscrawl-2011-300K/sources.jsonl b/base/afr/newscrawl-2011-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e6f83caca0c01076d6ae613236182f6157eafde8 --- /dev/null +++ b/base/afr/newscrawl-2011-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22f23a289f6a337cb82a40d20fbfe4e30934a9e7293129e6eb13e75574c41e18 +size 5259130 diff --git a/base/afr/newscrawl-2011-300K/strings.jsonl b/base/afr/newscrawl-2011-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6fd4e1984f5cb5b411beba208f8874d4f332a1a9 --- /dev/null +++ b/base/afr/newscrawl-2011-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96bfcfb3a02c10b0c3c911bd20dc090a05f52dde973cad143656a91ffe2f8bec +size 10459077 diff --git a/base/afr/newscrawl-2012-300K/cooccurrence.neighbor.jsonl b/base/afr/newscrawl-2012-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4aad9e29225887f329c034c5a330b65cfece2650 --- /dev/null +++ b/base/afr/newscrawl-2012-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b918e039e0a0136bf4177cd4f26882ad8bf50a74137a4f2ecaa064cfb77bd9 +size 12636193 diff --git a/base/afr/newscrawl-2012-300K/cooccurrence.sentence.jsonl b/base/afr/newscrawl-2012-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..140c0ae59ed4ad7e7e0107768cba2d03d5a0b1f4 --- /dev/null +++ b/base/afr/newscrawl-2012-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766d1f80fca2097d2bbfc6175e325b60bbff3f1d2093ae0dba8798f0dde1ec95 +size 68988684 diff --git a/base/afr/newscrawl-2012-300K/metadata.json b/base/afr/newscrawl-2012-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..45b4d9bd764509d12447294d5d32031033c1bf44 --- /dev/null +++ b/base/afr/newscrawl-2012-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "newscrawl", + "date": "2012", + "size": "300K", + "file": "afr_newscrawl_2012_300K" +} diff --git a/base/afr/newscrawl-2012-300K/sentences.jsonl b/base/afr/newscrawl-2012-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1939cceed8e855270cf0439442a97a6fe266bfbb --- /dev/null +++ b/base/afr/newscrawl-2012-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af5f27c726a7a4f2d61cc063dd8bd47f80f558e66b7fcc9aec2d6411dfb7b4d +size 44364950 diff --git a/base/afr/newscrawl-2012-300K/sources.jsonl b/base/afr/newscrawl-2012-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d8c3206e5c728a4210b2b4e06f5e0003daee7c60 --- /dev/null +++ b/base/afr/newscrawl-2012-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd4da22be00e4f1985873956a803b640a9f3da0511ce66856bf60f36bf81faf +size 42 diff --git a/base/afr/newscrawl-2012-300K/strings.jsonl b/base/afr/newscrawl-2012-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..123b03c3adf99a91d1192354e3579384d5a441b9 --- /dev/null +++ b/base/afr/newscrawl-2012-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1f87c5aeaa1ccaf579412be6bc149a82a6041bac20cb8438557fbadead703d +size 9994282 diff --git a/base/afr/newscrawl-2013-100K/cooccurrence.neighbor.jsonl b/base/afr/newscrawl-2013-100K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..df2701f875423f05e9a463773cc18b070e7329df --- /dev/null +++ b/base/afr/newscrawl-2013-100K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e96dd099a4d8437122acc334449ad69e420cd56a9c775623ff30abe02e5920c +size 4904296 diff --git a/base/afr/newscrawl-2013-100K/cooccurrence.sentence.jsonl b/base/afr/newscrawl-2013-100K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..792cac7fc4be012e70064070bd3b96d7f54ebaf3 --- /dev/null +++ b/base/afr/newscrawl-2013-100K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23437f4c2602960186cd0f94f020d96f5ba273c3e0f1b07e2cff4a3f3ccbfa29 +size 23059912 diff --git a/base/afr/newscrawl-2013-100K/metadata.json b/base/afr/newscrawl-2013-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d7a0ef9e17d1b7796a3afde76a3c7e86a9a2edd7 --- /dev/null +++ b/base/afr/newscrawl-2013-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "newscrawl", + "date": "2013", + "size": "100K", + "file": "afr_newscrawl_2013_100K" +} diff --git a/base/afr/newscrawl-2013-100K/sentences.jsonl b/base/afr/newscrawl-2013-100K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e8183fb6b7c900a86bb22c007c267d46a3786a8b --- /dev/null +++ b/base/afr/newscrawl-2013-100K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45fec23f883ee46490249c4a8d87373d675838b1d00acea048d83f2083e5b831 +size 14702324 diff --git a/base/afr/newscrawl-2013-100K/sources.jsonl b/base/afr/newscrawl-2013-100K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3a44df52b02d57d8ddc6e0deb961a0d45bf12037 --- /dev/null +++ b/base/afr/newscrawl-2013-100K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c3f35d0b2123912b62b40a823335d988e33592e92e82f16542c0f6de90e064c +size 3189139 diff --git a/base/afr/newscrawl-2013-100K/strings.jsonl b/base/afr/newscrawl-2013-100K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9ffbd216d4dd07bb26f978f86954f518d81a6db2 --- /dev/null +++ b/base/afr/newscrawl-2013-100K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a5bd9eee8c16b4ce0d7d4a5ee858f9cf77593f4c8f8aaf7076d6949a7d2464 +size 5370945 diff --git a/base/afr/web-2011-100K/cooccurrence.neighbor.jsonl b/base/afr/web-2011-100K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8d9eab464a93d414cc420be3898255674385999e --- /dev/null +++ b/base/afr/web-2011-100K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff71f1fca791be1d46a067cb89c469ad6fffdabc75f74049bbfd4a816d4c8949 +size 4560349 diff --git a/base/afr/web-2011-100K/cooccurrence.sentence.jsonl b/base/afr/web-2011-100K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..800e8bdb7d9fde066fb74f1c10071395ff3866a3 --- /dev/null +++ b/base/afr/web-2011-100K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f2a46f9dacd55c73386a8c345f0fb696957ece8f0cd952a3a5c75dbc72bfa4d +size 22245010 diff --git a/base/afr/web-2011-100K/metadata.json b/base/afr/web-2011-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8877e635f3fca4feb61f1f28d985698aab6c9334 --- /dev/null +++ b/base/afr/web-2011-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "web", + "date": "2011", + "size": "100K", + "file": "afr_web_2011_100K" +} diff --git a/base/afr/web-2011-100K/sentences.jsonl b/base/afr/web-2011-100K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..df8c9a3fb35c50ab48da666a992c59ff8c8ae9ad --- /dev/null +++ b/base/afr/web-2011-100K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11389ded1ae7bb28902b33c653df43ca971d01bffac54304cfd7abf49c271e7c +size 13339862 diff --git a/base/afr/web-2011-100K/sources.jsonl b/base/afr/web-2011-100K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8562ddb513629267664d864009d2dd47615d6782 --- /dev/null +++ b/base/afr/web-2011-100K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b7ad8ea1e7b892a2a924b1a4b9ec32e7f2eb9ca177fe2208cc8314a5fe8ceb3 +size 1192006 diff --git a/base/afr/web-2011-100K/strings.jsonl b/base/afr/web-2011-100K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..52fa40f47bd2d6966f47397bfa46799878d7b1f8 --- /dev/null +++ b/base/afr/web-2011-100K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4582c928ec785c62f87c1833c360ae3ecc00732c9a00ad8eff389160c5a6a4f +size 4599098 diff --git a/base/afr/web-2012-100K/cooccurrence.neighbor.jsonl b/base/afr/web-2012-100K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..60e6ef93c109af7d5e1a8b883ea0b774a1b165e1 --- /dev/null +++ b/base/afr/web-2012-100K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44d5e02c2fb39d31d57a38bcf00d69b63afdafa078a1e4fdadd9b98a18606c5 +size 4669015 diff --git a/base/afr/web-2012-100K/cooccurrence.sentence.jsonl b/base/afr/web-2012-100K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ff67c9644ac146a6144a62f4ccf191d949b79a4a --- /dev/null +++ b/base/afr/web-2012-100K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f9b888cce11f539354c2ce134b0c65430f72ed96da28ecc6f679ee51f2adade +size 22958664 diff --git a/base/afr/web-2012-100K/metadata.json b/base/afr/web-2012-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..fb122c3da2d1abeb0e752e8ddb26c812898591e7 --- /dev/null +++ b/base/afr/web-2012-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "web", + "date": "2012", + "size": "100K", + "file": "afr_web_2012_100K" +} diff --git a/base/afr/web-2012-100K/sentences.jsonl b/base/afr/web-2012-100K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..efa01bbcb93de5e3739b7b549c05298f10c764f6 --- /dev/null +++ b/base/afr/web-2012-100K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2165a0df8c7b5b3fcb654e57ab1bdd898cf57dfb691d45f667e3de98d4ec653 +size 13543628 diff --git a/base/afr/web-2012-100K/sources.jsonl b/base/afr/web-2012-100K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d70764ebc1cd89cfb42cc3ec964fece61be96a32 --- /dev/null +++ b/base/afr/web-2012-100K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f223688f6ba178a330623dcb7c7bfb944ebef8cce10363180d0d11cad30070ab +size 831558 diff --git a/base/afr/web-2012-100K/strings.jsonl b/base/afr/web-2012-100K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ea8541288d80d506aeeb9724f4efd59c032926be --- /dev/null +++ b/base/afr/web-2012-100K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4e187809faa4c7f86598f09c23194dccf9d574aa8a0724979f657a8aca93b6 +size 4549926 diff --git a/base/afr/web-2013-300K/cooccurrence.neighbor.jsonl b/base/afr/web-2013-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6c26e8a5c723e67407c1327eb9b0a999433236d7 --- /dev/null +++ b/base/afr/web-2013-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118cb5fbad0f1dab947bf070b407e201e06d8f040eaf5224f5cb08f95f9a0033 +size 11882604 diff --git a/base/afr/web-2013-300K/cooccurrence.sentence.jsonl b/base/afr/web-2013-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..82cc35a21d11fe24cc437b6e142e3599766aac50 --- /dev/null +++ b/base/afr/web-2013-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab49a3b295277b88d7885c571d5d18cf079f5a68845fc9b3df228b243c2f6315 +size 63594636 diff --git a/base/afr/web-2013-300K/metadata.json b/base/afr/web-2013-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..247fb781fb7d37beda69b36f3b005e5f8adf1dcb --- /dev/null +++ b/base/afr/web-2013-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "web", + "date": "2013", + "size": "300K", + "file": "afr_web_2013_300K" +} diff --git a/base/afr/web-2013-300K/sentences.jsonl b/base/afr/web-2013-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ffd36fa4c545e12d151a71f3ade25b5d259ac38a --- /dev/null +++ b/base/afr/web-2013-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a905a3716c00354232d0e63443efeb5b1177ae69f25ac9c556b13edc256e669 +size 41076722 diff --git a/base/afr/web-2013-300K/sources.jsonl b/base/afr/web-2013-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..14b29bcb6ec0bedcbd5e23387719bc7573c1063c --- /dev/null +++ b/base/afr/web-2013-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa65c1a3259ce691e8eb4255335dc91e1d16909cc8966f9b7519f4d4c544656 +size 2494501 diff --git a/base/afr/web-2013-300K/strings.jsonl b/base/afr/web-2013-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..459d9280db3d1d6a2dc3f0646002c211c71d8a77 --- /dev/null +++ b/base/afr/web-2013-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd95e5d4e6ca8dffdea2d395092f5558ca96b56158e226a63dda9a55ee7e2421 +size 10127741 diff --git a/base/afr/wikipedia-2007-30K/cooccurrence.neighbor.jsonl b/base/afr/wikipedia-2007-30K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..cb746bb971b3886826a59a635d47bcc763e9508a --- /dev/null +++ b/base/afr/wikipedia-2007-30K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c914dd901f9e372e53f36fd9917b1ca886b9920879bd026ccc2bad9d0cf56a56 +size 1717563 diff --git a/base/afr/wikipedia-2007-30K/cooccurrence.sentence.jsonl b/base/afr/wikipedia-2007-30K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..07543c24d4345aeeb9b52ec09f04ebba6efccd3e --- /dev/null +++ b/base/afr/wikipedia-2007-30K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f23e2208b23b739e09bb22c5a5d1446c8a0d8b5a521c13e0f630ff17d02a2d +size 6974008 diff --git a/base/afr/wikipedia-2007-30K/metadata.json b/base/afr/wikipedia-2007-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..0c802110634938b5fcdbba4e7f4370f8d0463c78 --- /dev/null +++ b/base/afr/wikipedia-2007-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "wikipedia", + "date": "2007", + "size": "30K", + "file": "afr_wikipedia_2007_30K" +} diff --git a/base/afr/wikipedia-2007-30K/sentences.jsonl b/base/afr/wikipedia-2007-30K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9b31877660310baa1ff8d426167bb46916e77580 --- /dev/null +++ b/base/afr/wikipedia-2007-30K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0312dec98899ea36c65175dbaecabb8b3b95a07316492abaa9deecfdc0d7f38b +size 4753863 diff --git a/base/afr/wikipedia-2007-30K/sources.jsonl b/base/afr/wikipedia-2007-30K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..18903fc189771211ac72be03353154696018cf1a --- /dev/null +++ b/base/afr/wikipedia-2007-30K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560f69eb25017c7031e390ca214d8451aad5e5ae305018b80090bd2080c97aa9 +size 425547 diff --git a/base/afr/wikipedia-2007-30K/strings.jsonl b/base/afr/wikipedia-2007-30K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..767a134d389ee473652f52b18106f5c335285765 --- /dev/null +++ b/base/afr/wikipedia-2007-30K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:590f5db57ec8194ee48c07bd1396be9ba3dab8f97b466ce4182e4b9d882acf9b +size 2905586 diff --git a/base/afr/wikipedia-2012-100K/cooccurrence.neighbor.jsonl b/base/afr/wikipedia-2012-100K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..126987d959797dbc94ad82a489e283370b48eddf --- /dev/null +++ b/base/afr/wikipedia-2012-100K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdc5ed08f904a53fbc191d163273013f8d57512b6c7f857837969b368814165 +size 5068411 diff --git a/base/afr/wikipedia-2012-100K/cooccurrence.sentence.jsonl b/base/afr/wikipedia-2012-100K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..02ae3b92a7b3121c70e078fec3cd2b46c26dc60a --- /dev/null +++ b/base/afr/wikipedia-2012-100K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cbee2fcf4dca5f20e6c3cdf9574e14c4c699cf614e0277e85e80c1d582994c6 +size 26385846 diff --git a/base/afr/wikipedia-2012-100K/metadata.json b/base/afr/wikipedia-2012-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..169c6fb50b4502a4e8fc0b6510a257c7a2a1b086 --- /dev/null +++ b/base/afr/wikipedia-2012-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "wikipedia", + "date": "2012", + "size": "100K", + "file": "afr_wikipedia_2012_100K" +} diff --git a/base/afr/wikipedia-2012-100K/sentences.jsonl b/base/afr/wikipedia-2012-100K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6c1ff79a6af2b8e8c7c7379957891edbcb23cc33 --- /dev/null +++ b/base/afr/wikipedia-2012-100K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f67b9125762bfbb50411e66131d9c75d20a4bb29f81b38399c3af1d9fd9a278 +size 15864894 diff --git a/base/afr/wikipedia-2012-100K/sources.jsonl b/base/afr/wikipedia-2012-100K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..154d4b8d3668bd8e30ab7cf1001daf4e8678b59f --- /dev/null +++ b/base/afr/wikipedia-2012-100K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcc27e6db3eb69f93bff7c9868486b4ca791ff4f84c842c696815677850f651 +size 53406 diff --git a/base/afr/wikipedia-2012-100K/strings.jsonl b/base/afr/wikipedia-2012-100K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..73b425abd04ebfb56c8dd43fb8f75d6649c51338 --- /dev/null +++ b/base/afr/wikipedia-2012-100K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9251f2095db54bd86ce87f90dc5fc7d9d94330925c0c4e8cb19fd988a415ce15 +size 7180434 diff --git a/base/afr/wikipedia-2014-100K/cooccurrence.neighbor.jsonl b/base/afr/wikipedia-2014-100K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8e7f1fa94a9774d489b59e21fb28b3d72b4b893a --- /dev/null +++ b/base/afr/wikipedia-2014-100K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2310b24cd19bee66fa1b1dccfd96b18514c77cb4a1c9c14b674722842d029ba2 +size 5108360 diff --git a/base/afr/wikipedia-2014-100K/cooccurrence.sentence.jsonl b/base/afr/wikipedia-2014-100K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2c18bf7f41620626cd7e03c81aa28bf42214a984 --- /dev/null +++ b/base/afr/wikipedia-2014-100K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f769de858b96dc75809753838735436fc35543d69beeffdaee05d1308ed433b +size 27203192 diff --git a/base/afr/wikipedia-2014-100K/metadata.json b/base/afr/wikipedia-2014-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e9bcc517e9a12c0f472738fea9986ff6b82fea89 --- /dev/null +++ b/base/afr/wikipedia-2014-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "wikipedia", + "date": "2014", + "size": "100K", + "file": "afr_wikipedia_2014_100K" +} diff --git a/base/afr/wikipedia-2014-100K/sentences.jsonl b/base/afr/wikipedia-2014-100K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4fca1a37f08e9b457efaf7e89d73e043df7f7030 --- /dev/null +++ b/base/afr/wikipedia-2014-100K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8204f6cc78569be4befb79733c4b3a6017b2eab8cff19e099a03a821d06646b +size 15808143 diff --git a/base/afr/wikipedia-2014-100K/sources.jsonl b/base/afr/wikipedia-2014-100K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1bd3e451b80289b6fc16f07589a4ef1e792e9dbf --- /dev/null +++ b/base/afr/wikipedia-2014-100K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d332ecb0dbfdb4a9021c178f1f66ab11d1a0272cd5a780c9c85d174d74bb9a43 +size 1760741 diff --git a/base/afr/wikipedia-2014-100K/strings.jsonl b/base/afr/wikipedia-2014-100K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9e29f6fa9d239ee5c5f50c6184339a6cb179dd95 --- /dev/null +++ b/base/afr/wikipedia-2014-100K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db131fe0e3eb3865599ca72d1858e747c0c134e5768d2a1770809991dec2f60 +size 7123478 diff --git a/base/afr/wikipedia-2016-300K/cooccurrence.neighbor.jsonl b/base/afr/wikipedia-2016-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a2e148a3eea9114f2046aaefb35b0c32621a2dba --- /dev/null +++ b/base/afr/wikipedia-2016-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc04e84615c3d831e471b82614d8b83973307f3e5daf6dc56d7e09dac0ddf3d1 +size 13790837 diff --git a/base/afr/wikipedia-2016-300K/cooccurrence.sentence.jsonl b/base/afr/wikipedia-2016-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..20f78818736fc33534614794a0290f49958a539c --- /dev/null +++ b/base/afr/wikipedia-2016-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930f0021b060f80489b13d82eb03751edf30fff1d100bc1c226c9caf522ba216 +size 85299580 diff --git a/base/afr/wikipedia-2016-300K/metadata.json b/base/afr/wikipedia-2016-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..85369ed6006aa7af3e65135a727056091df2ce11 --- /dev/null +++ b/base/afr/wikipedia-2016-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "wikipedia", + "date": "2016", + "size": "300K", + "file": "afr_wikipedia_2016_300K" +} diff --git a/base/afr/wikipedia-2016-300K/sentences.jsonl b/base/afr/wikipedia-2016-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2497944e42891207584b036730ac7642bd6ad7cb --- /dev/null +++ b/base/afr/wikipedia-2016-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d13a569873bdbb8051c9b8cc2e0f4aef325c21467ffdcd8ba88280bca284c9 +size 47489122 diff --git a/base/afr/wikipedia-2016-300K/sources.jsonl b/base/afr/wikipedia-2016-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..238ddbcfbbd068517a850a2c4c1e431a72ebff43 --- /dev/null +++ b/base/afr/wikipedia-2016-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b5560f085bc9c96c95c560a2a83450797e72cb5fa259ff3e02736be950e1b3 +size 2879587 diff --git a/base/afr/wikipedia-2016-300K/strings.jsonl b/base/afr/wikipedia-2016-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..946627c502b696ae7a5cb47e5dd9acc26e41d127 --- /dev/null +++ b/base/afr/wikipedia-2016-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8e7aacbe16c0ea184c96f91ca49e89dae69929773097e8797395e0a6821dba +size 13806389 diff --git a/base/afr/wikipedia-2021-300K/cooccurrence.neighbor.jsonl b/base/afr/wikipedia-2021-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6ac6fbbd87b53d55ee1d480222dbbf64f353c342 --- /dev/null +++ b/base/afr/wikipedia-2021-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512b01174e70b32beeec544c68ca257e728e3d2942cf4eacee3a4b46bb8fe2ec +size 13133186 diff --git a/base/afr/wikipedia-2021-300K/cooccurrence.sentence.jsonl b/base/afr/wikipedia-2021-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7dcc02e34cf573afcbe10c8158f65074f7af9d0c --- /dev/null +++ b/base/afr/wikipedia-2021-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9418c87682b05e927b9a12b96bf2f5e110c0e598fa217e6fdc325a91e1f52b8c +size 82868280 diff --git a/base/afr/wikipedia-2021-300K/metadata.json b/base/afr/wikipedia-2021-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..988bbd1ec38daf815264a999e36ae665859edd34 --- /dev/null +++ b/base/afr/wikipedia-2021-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "afr", + "source": "wikipedia", + "date": "2021", + "size": "300K", + "file": "afr_wikipedia_2021_300K" +} diff --git a/base/afr/wikipedia-2021-300K/sentences.jsonl b/base/afr/wikipedia-2021-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..93c61c00090fc9574c4b8d2579afac12c496ba26 --- /dev/null +++ b/base/afr/wikipedia-2021-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c4106094d1158575ec1fe6f7f5ffc5780f6693d4a65f5c0ca495d586344ef9 +size 46154053 diff --git a/base/afr/wikipedia-2021-300K/sources.jsonl b/base/afr/wikipedia-2021-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..de1ec42f8e5d20f453f01371d2bf90a47cef02e0 --- /dev/null +++ b/base/afr/wikipedia-2021-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618c8dd8597c4a8356721a6b59dc7109c004f1bab8d40c3990fcef4abffbc081 +size 4386392 diff --git a/base/afr/wikipedia-2021-300K/strings.jsonl b/base/afr/wikipedia-2021-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c4cb68d0ad0a4753f6591722db814e130e8af69f --- /dev/null +++ b/base/afr/wikipedia-2021-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64a740c30ed988540d73b9f8d9207ad4732dfb1b1f4439381f2c6630b2dcc7b +size 14510772 diff --git a/base/amh/wikipedia-2014-30K/cooccurrence.neighbor.jsonl b/base/amh/wikipedia-2014-30K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..612c99a69f31804a86fd2e5d6aa2ae2437f3d8b8 --- /dev/null +++ b/base/amh/wikipedia-2014-30K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:417295131e9213e6182a5f798704125e8eb05c441cede93dd59e90adb987c4d1 +size 834296 diff --git a/base/amh/wikipedia-2014-30K/cooccurrence.sentence.jsonl b/base/amh/wikipedia-2014-30K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1a164f24a387b67e42145fce21bc361af67b8fbd --- /dev/null +++ b/base/amh/wikipedia-2014-30K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9a219f3409ad35eb6b267372fd567369a73840f1789ab6157d496e0b669048 +size 7821762 diff --git a/base/amh/wikipedia-2014-30K/metadata.json b/base/amh/wikipedia-2014-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8e570b57dc6591a8df26c8a97f63ed7bdc49e786 --- /dev/null +++ b/base/amh/wikipedia-2014-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "amh", + "source": "wikipedia", + "date": "2014", + "size": "30K", + "file": "amh_wikipedia_2014_30K" +} diff --git a/base/amh/wikipedia-2014-30K/sentences.jsonl b/base/amh/wikipedia-2014-30K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6ddddcb59c12719f1153f2e4c22053ca784c92c4 --- /dev/null +++ b/base/amh/wikipedia-2014-30K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea6206dc4d6def4fa505c179eab73b8e7c737ed91ef17861f24bd6d3cb964e7 +size 6497223 diff --git a/base/amh/wikipedia-2014-30K/sources.jsonl b/base/amh/wikipedia-2014-30K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..35ff1adacaa55d80a45a484fd72ff1f319fe4d26 --- /dev/null +++ b/base/amh/wikipedia-2014-30K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7030d81ae1a3296c419fecf18e8ee803ac73a4724926539bc325a2b7bbe7e7 +size 648003 diff --git a/base/amh/wikipedia-2014-30K/strings.jsonl b/base/amh/wikipedia-2014-30K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2952ab553653d416d0edf7f4ff47f3cfcbbba12a --- /dev/null +++ b/base/amh/wikipedia-2014-30K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4485519db4ecc2e474e54ee04fa2fcdd863d84e3a3faabbaa7e1f8699b80d7c +size 5065165 diff --git a/base/amh/wikipedia-2016-30K/cooccurrence.neighbor.jsonl b/base/amh/wikipedia-2016-30K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..641bcafadf2bc8aea0fe491bae883f75a4455d72 --- /dev/null +++ b/base/amh/wikipedia-2016-30K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970f56b1f59eb94b6a613e8a7288d216c1b100d5e7d985f0575ec3bd0dc2b9b0 +size 809708 diff --git a/base/amh/wikipedia-2016-30K/cooccurrence.sentence.jsonl b/base/amh/wikipedia-2016-30K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c73c8df183bc4cf6fbae8429dc174276324dbede --- /dev/null +++ b/base/amh/wikipedia-2016-30K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66fb2f5c048b1014977a0adfd8026f3b338cd598377ca1ff19a173dc105ef265 +size 7433782 diff --git a/base/amh/wikipedia-2016-30K/metadata.json b/base/amh/wikipedia-2016-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..530d9940bd246a88f18378c9422e272a391feafa --- /dev/null +++ b/base/amh/wikipedia-2016-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "amh", + "source": "wikipedia", + "date": "2016", + "size": "30K", + "file": "amh_wikipedia_2016_30K" +} diff --git a/base/amh/wikipedia-2016-30K/sentences.jsonl b/base/amh/wikipedia-2016-30K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f6b43ad33960447e1e5be39c649517c90c482075 --- /dev/null +++ b/base/amh/wikipedia-2016-30K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f906ac54b611d88c0aa600d7fe6a653f6849b41fc33d504fd6c46b337444c7 +size 6466419 diff --git a/base/amh/wikipedia-2016-30K/sources.jsonl b/base/amh/wikipedia-2016-30K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9b209d060fd4337a4a6580a6df0494ab21cebaa0 --- /dev/null +++ b/base/amh/wikipedia-2016-30K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab04c6d8b3b45fa51e1e4081f883033d7058437bc252fdae55f80699c103008d +size 682481 diff --git a/base/amh/wikipedia-2016-30K/strings.jsonl b/base/amh/wikipedia-2016-30K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e67722cbfb21ae4829c2e101d6f17ea133dc0dda --- /dev/null +++ b/base/amh/wikipedia-2016-30K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc8dbb90fa45b93969fe7b922b8aa53d87f4b6928bc9685a85d93ac98572f4a +size 5127226 diff --git a/base/amh/wikipedia-2021-30K/cooccurrence.neighbor.jsonl b/base/amh/wikipedia-2021-30K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..29d8ba14d01de0175b3a3467fad11a3cc413bd67 --- /dev/null +++ b/base/amh/wikipedia-2021-30K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c6348a12a8d61b28579ef57c4d39dd360f35886783d645e9f3e5d57f580280 +size 607604 diff --git a/base/amh/wikipedia-2021-30K/cooccurrence.sentence.jsonl b/base/amh/wikipedia-2021-30K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..179222ffba4e248e180c04fff38b842c65705d4b --- /dev/null +++ b/base/amh/wikipedia-2021-30K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20554ac14361f3471aaf2b8b7e6048d7179dbab47ac10740c9ec613d614b0037 +size 4461422 diff --git a/base/amh/wikipedia-2021-30K/metadata.json b/base/amh/wikipedia-2021-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e27015b4e9067496104407a167a12ab3bb2ce5d9 --- /dev/null +++ b/base/amh/wikipedia-2021-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "amh", + "source": "wikipedia", + "date": "2021", + "size": "30K", + "file": "amh_wikipedia_2021_30K" +} diff --git a/base/amh/wikipedia-2021-30K/sentences.jsonl b/base/amh/wikipedia-2021-30K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..90da5eb086b7890b03ca4a650f52343e9c14384f --- /dev/null +++ b/base/amh/wikipedia-2021-30K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d301a7d07ca119600253f29ee6fa9fb13d2a6624b4cd9c9898be055f2148b0aa +size 5909320 diff --git a/base/amh/wikipedia-2021-30K/sources.jsonl b/base/amh/wikipedia-2021-30K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..49a655bd9e257dfba33cbb434947c7c949783574 --- /dev/null +++ b/base/amh/wikipedia-2021-30K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a62e4aa53daaa0b0537c8da8b315e87573187c95a31d3178b601348bc02a9e3 +size 465657 diff --git a/base/amh/wikipedia-2021-30K/strings.jsonl b/base/amh/wikipedia-2021-30K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b39166f0a76d39048d5bdf4479bf09a10c8c06bf --- /dev/null +++ b/base/amh/wikipedia-2021-30K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946e502b543d5a74b3d5f21e1905a8b1ce900c2579a44036833c891fd214f92e +size 5010343 diff --git a/base/ara-ae/newscrawl-OSIAN-2018-30K/metadata.json b/base/ara-ae/newscrawl-OSIAN-2018-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..7cbf326a24174f0079936b6b100f82d341bc441c --- /dev/null +++ b/base/ara-ae/newscrawl-OSIAN-2018-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ae", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "30K", + "file": "ara-ae_newscrawl-OSIAN_2018_30K" +} diff --git a/base/ara-ae/web-2015-300K/metadata.json b/base/ara-ae/web-2015-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..5f569dac458f7287d175cf7ed53d30325ad51759 --- /dev/null +++ b/base/ara-ae/web-2015-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ae", + "source": "web", + "date": "2015", + "size": "300K", + "file": "ara-ae_web_2015_300K" +} diff --git a/base/ara-ae/web-2017-1M/metadata.json b/base/ara-ae/web-2017-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d8f780d7b29c16d2b1a365b3284d62d43ebc1375 --- /dev/null +++ b/base/ara-ae/web-2017-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ae", + "source": "web", + "date": "2017", + "size": "1M", + "file": "ara-ae_web_2017_1M" +} diff --git a/base/ara-au/newscrawl-OSIAN-2018-30K/metadata.json b/base/ara-au/newscrawl-OSIAN-2018-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..2d64bbc1aa7a8585471d24c2ff206e102190d923 --- /dev/null +++ b/base/ara-au/newscrawl-OSIAN-2018-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-au", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "30K", + "file": "ara-au_newscrawl-OSIAN_2018_30K" +} diff --git a/base/ara-bh/web-2015-100K/metadata.json b/base/ara-bh/web-2015-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..96c5401e27d7247e83c40132415ebdae7cec7b79 --- /dev/null +++ b/base/ara-bh/web-2015-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-bh", + "source": "web", + "date": "2015", + "size": "100K", + "file": "ara-bh_web_2015_100K" +} diff --git a/base/ara-bh/web-2017-30K/metadata.json b/base/ara-bh/web-2017-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..048a3998a358e93c3f864a62484a44509de0b4d9 --- /dev/null +++ b/base/ara-bh/web-2017-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-bh", + "source": "web", + "date": "2017", + "size": "30K", + "file": "ara-bh_web_2017_30K" +} diff --git a/base/ara-ca/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-ca/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..72200fba39ff30f15083f7a68a861925afcf9001 --- /dev/null +++ b/base/ara-ca/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ca", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-ca_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-com/newscrawl-OSIAN-2018-300K/metadata.json b/base/ara-com/newscrawl-OSIAN-2018-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..32d6d4b7c605d106221729e49d34e7c9b09f56ee --- /dev/null +++ b/base/ara-com/newscrawl-OSIAN-2018-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-com", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "300K", + "file": "ara-com_newscrawl-OSIAN_2018_300K" +} diff --git a/base/ara-de/newscrawl-OSIAN-2018-1M/metadata.json b/base/ara-de/newscrawl-OSIAN-2018-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..573ec8773ac8152f60cb1531dc7540d3f0e66b32 --- /dev/null +++ b/base/ara-de/newscrawl-OSIAN-2018-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-de", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "1M", + "file": "ara-de_newscrawl-OSIAN_2018_1M" +} diff --git a/base/ara-dz/newscrawl-OSIAN-2018-1M/metadata.json b/base/ara-dz/newscrawl-OSIAN-2018-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..1611801f3680d01d14bb36e93b135f9458864189 --- /dev/null +++ b/base/ara-dz/newscrawl-OSIAN-2018-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-dz", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "1M", + "file": "ara-dz_newscrawl-OSIAN_2018_1M" +} diff --git a/base/ara-eg/newscrawl-OSIAN-2018-300K/metadata.json b/base/ara-eg/newscrawl-OSIAN-2018-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..47e4220f9175818faddc04da03f5e88af73c80ce --- /dev/null +++ b/base/ara-eg/newscrawl-OSIAN-2018-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-eg", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "300K", + "file": "ara-eg_newscrawl-OSIAN_2018_300K" +} diff --git a/base/ara-eg/web-2015-300K/metadata.json b/base/ara-eg/web-2015-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..334fbd2b084a6df02241899170c4b22eee8c6ce6 --- /dev/null +++ b/base/ara-eg/web-2015-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-eg", + "source": "web", + "date": "2015", + "size": "300K", + "file": "ara-eg_web_2015_300K" +} diff --git a/base/ara-fr/newscrawl-OSIAN-2018-300K/metadata.json b/base/ara-fr/newscrawl-OSIAN-2018-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..dc502494321efe284e63176d024d912dab471bde --- /dev/null +++ b/base/ara-fr/newscrawl-OSIAN-2018-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-fr", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "300K", + "file": "ara-fr_newscrawl-OSIAN_2018_300K" +} diff --git a/base/ara-international/newscrawl-OSIAN-2018-1M/metadata.json b/base/ara-international/newscrawl-OSIAN-2018-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..dc7681592da2091ef2e1003b748bc7cac8abe931 --- /dev/null +++ b/base/ara-international/newscrawl-OSIAN-2018-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-international", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "1M", + "file": "ara-international_newscrawl-OSIAN_2018_1M" +} diff --git a/base/ara-iq/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-iq/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..f4806c7bebce824f24ffb778fdee00fc291375c0 --- /dev/null +++ b/base/ara-iq/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-iq", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-iq_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-ir/newscrawl-OSIAN-2018-300K/metadata.json b/base/ara-ir/newscrawl-OSIAN-2018-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..8e017db1bc43d73e36f5a40b28245ae139b9a081 --- /dev/null +++ b/base/ara-ir/newscrawl-OSIAN-2018-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ir", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "300K", + "file": "ara-ir_newscrawl-OSIAN_2018_300K" +} diff --git a/base/ara-jo/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-jo/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..5f6cab3ec8aa1b82ac049b63ce5c25c3a25b65a1 --- /dev/null +++ b/base/ara-jo/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-jo", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-jo_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-ma/newscrawl-OSIAN-2018-300K/metadata.json b/base/ara-ma/newscrawl-OSIAN-2018-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..bf36494f0c9133614a4e3867a6df15e643617360 --- /dev/null +++ b/base/ara-ma/newscrawl-OSIAN-2018-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ma", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "300K", + "file": "ara-ma_newscrawl-OSIAN_2018_300K" +} diff --git a/base/ara-middleeast/newscrawl-OSIAN-2018-300K/metadata.json b/base/ara-middleeast/newscrawl-OSIAN-2018-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cd83463d5fdb066fe01aea3341f2aa8505c21132 --- /dev/null +++ b/base/ara-middleeast/newscrawl-OSIAN-2018-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-middleeast", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "300K", + "file": "ara-middleeast_newscrawl-OSIAN_2018_300K" +} diff --git a/base/ara-ps/newscrawl-2012-300K/metadata.json b/base/ara-ps/newscrawl-2012-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..daa24dbedddb81fe6f840dbd6b8670ba88655d42 --- /dev/null +++ b/base/ara-ps/newscrawl-2012-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ps", + "source": "newscrawl", + "date": "2012", + "size": "300K", + "file": "ara-ps_newscrawl_2012_300K" +} diff --git a/base/ara-ps/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-ps/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..bfc0160adff77abeff51b4cef719d3608f6c618c --- /dev/null +++ b/base/ara-ps/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ps", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-ps_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-qa/newscrawl-OSIAN-2018-30K/metadata.json b/base/ara-qa/newscrawl-OSIAN-2018-30K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ef10c4cf5afded78bf70242bb00e31ff37e6d40a --- /dev/null +++ b/base/ara-qa/newscrawl-OSIAN-2018-30K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-qa", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "30K", + "file": "ara-qa_newscrawl-OSIAN_2018_30K" +} diff --git a/base/ara-ru/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-ru/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..4f66d017dfefe87ef672d14c3fa71bfeffd00b15 --- /dev/null +++ b/base/ara-ru/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-ru", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-ru_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-sa/newscrawl-OSIAN-2018-10K/metadata.json b/base/ara-sa/newscrawl-OSIAN-2018-10K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..64e2d1d1df7ae0437e548cff780d4db68b6d5c8d --- /dev/null +++ b/base/ara-sa/newscrawl-OSIAN-2018-10K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-sa", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "10K", + "file": "ara-sa_newscrawl-OSIAN_2018_10K" +} diff --git a/base/ara-se/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-se/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..511e5ee4d529a6e705defdb9da0b5c1801d9d074 --- /dev/null +++ b/base/ara-se/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-se", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-se_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-sy/newscrawl-2012-300K/metadata.json b/base/ara-sy/newscrawl-2012-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..6d35b2e542c6b55b664a62eebbdc30a20e585b9e --- /dev/null +++ b/base/ara-sy/newscrawl-2012-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-sy", + "source": "newscrawl", + "date": "2012", + "size": "300K", + "file": "ara-sy_newscrawl_2012_300K" +} diff --git a/base/ara-sy/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-sy/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..493f98c56b038a2d194fe73cf1ba5306c377b67f --- /dev/null +++ b/base/ara-sy/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-sy", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-sy_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-tn/newscrawl-2012-100K/metadata.json b/base/ara-tn/newscrawl-2012-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..cbe4363ddc23a007416780f38d2eab07a750127d --- /dev/null +++ b/base/ara-tn/newscrawl-2012-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-tn", + "source": "newscrawl", + "date": "2012", + "size": "100K", + "file": "ara-tn_newscrawl_2012_100K" +} diff --git a/base/ara-tn/newscrawl-OSIAN-2018-1M/metadata.json b/base/ara-tn/newscrawl-OSIAN-2018-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..263c3a26ee3f2838a39ad39f1ace03beb233740f --- /dev/null +++ b/base/ara-tn/newscrawl-OSIAN-2018-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-tn", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "1M", + "file": "ara-tn_newscrawl-OSIAN_2018_1M" +} diff --git a/base/ara-tr/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-tr/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..6e3f5b0d9f8455283ae5b4e24e6557869c59f28a --- /dev/null +++ b/base/ara-tr/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-tr", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-tr_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara-uk/newscrawl-OSIAN-2018-100K/metadata.json b/base/ara-uk/newscrawl-OSIAN-2018-100K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..673340f94a4e7310ddaf133cbc589670cfba8beb --- /dev/null +++ b/base/ara-uk/newscrawl-OSIAN-2018-100K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara-uk", + "source": "newscrawl-OSIAN", + "date": "2018", + "size": "100K", + "file": "ara-uk_newscrawl-OSIAN_2018_100K" +} diff --git a/base/ara/news-2005-2009-1M/metadata.json b/base/ara/news-2005-2009-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..2b0b91641e0b0e4472700cc96beef934b96b603d --- /dev/null +++ b/base/ara/news-2005-2009-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara", + "source": "news", + "date": "2005-2009", + "size": "1M", + "file": "ara_news_2005-2009_1M" +} diff --git a/base/ara/news-2007-300K/cooccurrence.neighbor.jsonl b/base/ara/news-2007-300K/cooccurrence.neighbor.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..abb2a8ac6df37fecd5f4318ffb2053152cb720fd --- /dev/null +++ b/base/ara/news-2007-300K/cooccurrence.neighbor.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d657c6e5217c16ba84dbb4b5f90eacc63aec28309c498bfdb6aeb803f08100cb +size 23886384 diff --git a/base/ara/news-2007-300K/cooccurrence.sentence.jsonl b/base/ara/news-2007-300K/cooccurrence.sentence.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c37309fcae7e2ef804053d14733ed342e17908fe --- /dev/null +++ b/base/ara/news-2007-300K/cooccurrence.sentence.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03ec3b0d63f10bac71ae9fa6b3bab270de7fce400f4fc9c6ee5cf9a8d729a7a +size 293955850 diff --git a/base/ara/news-2007-300K/metadata.json b/base/ara/news-2007-300K/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..11dc65343a03757a95522bafe92e1bd23e3b60d3 --- /dev/null +++ b/base/ara/news-2007-300K/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara", + "source": "news", + "date": "2007", + "size": "300K", + "file": "ara_news_2007_300K" +} diff --git a/base/ara/news-2007-300K/sentences.jsonl b/base/ara/news-2007-300K/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5b3329805cd68ffc9f672cbe85b16b24e9f7edf9 --- /dev/null +++ b/base/ara/news-2007-300K/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c079c96a70aaacdf5fcc529144ca92dfed5f5c9c3fb50981633934b2e64f58 +size 82751327 diff --git a/base/ara/news-2007-300K/sources.jsonl b/base/ara/news-2007-300K/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..59b6ff59a1e61430ed924c07504607194ecfa311 --- /dev/null +++ b/base/ara/news-2007-300K/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50d63c005748e7c93c8e69e8eb6652a2bd26c2f9f82e7cb0b50be79874b1942 +size 5829220 diff --git a/base/ara/news-2007-300K/strings.jsonl b/base/ara/news-2007-300K/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..556e550c906513937aecac331ffb3c8736e4c9f7 --- /dev/null +++ b/base/ara/news-2007-300K/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3878426dd9a9027f90af351459aad2c79a5592afad4c214711ce6d2a089c7e6 +size 16332514 diff --git a/base/ara/news-2008-1M/metadata.json b/base/ara/news-2008-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..a572b424c6ff620e19b52c8da16cb00d6584b409 --- /dev/null +++ b/base/ara/news-2008-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara", + "source": "news", + "date": "2008", + "size": "1M", + "file": "ara_news_2008_1M" +} diff --git a/base/ara/news-2008-1M/sentences.jsonl b/base/ara/news-2008-1M/sentences.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..610782fc4b0e8b36eaaee7c7dc6d54189c6844a2 --- /dev/null +++ b/base/ara/news-2008-1M/sentences.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62078f5cba4d64a943cc56212769e9b8c1ef518c30b6eb9d94cd01052e8d3595 +size 274042622 diff --git a/base/ara/news-2008-1M/sources.jsonl b/base/ara/news-2008-1M/sources.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..917d73300fb9d23f374c4e96d10e00a6502afdd1 --- /dev/null +++ b/base/ara/news-2008-1M/sources.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f65981e629de9688589d2767a0cddaf7adbf002df6b6745220c0b153645661 +size 11761851 diff --git a/base/ara/news-2008-1M/strings.jsonl b/base/ara/news-2008-1M/strings.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3de6dfd65168f02007e431a6ac11e096ed7b0c11 --- /dev/null +++ b/base/ara/news-2008-1M/strings.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c77d7130a1ffab28b3fe1b2949370fba4f09a7913e1a06819b5bed20db4f09f +size 31913199 diff --git a/base/ara/news-2009-1M/metadata.json b/base/ara/news-2009-1M/metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ae85ef2d0b2843659c24ac0cd6b656e50e55a93e --- /dev/null +++ b/base/ara/news-2009-1M/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "ara", + "source": "news", + "date": "2009", + "size": "1M", + "file": "ara_news_2009_1M" +} diff --git a/deck.json b/deck.json new file mode 100644 index 0000000000000000000000000000000000000000..e7cfe0c61522c1267d3ac4916266602be33599c4 --- /dev/null +++ b/deck.json @@ -0,0 +1,29 @@ +{ + "form": "deck@1", + "provider": "cluesurf", + "project": "leipzig-frequency", + "title": "Leipzig Corpora Frequency Data", + "description": "Word frequency lists, sentence corpora, and co-occurrence data from the Leipzig Corpora Collection. Covers hundreds of languages across news, web, Wikipedia, and mixed sources.", + "version": "v0.1.0", + "tags": ["linguistics", "frequency", "corpus", "nlp", "language"], + "authors": [ + { + "name": "Lance Pollard", + "email": "lp@elk.fm", + "affiliation": "ClueSurf" + } + ], + "licenses": [ + { + "reference": "CC-BY-4.0" + } + ], + "sources": [ + { + "provider": "university-of-leipzig", + "title": "Leipzig Corpora Collection", + "url": "https://wortschatz.uni-leipzig.de/en/download", + "accessedAt": "April 12, 2026 PST" + } + ] +}