Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Trendingtopics | 351 | 12 years ago | 10 | Ruby | ||||||
Rails app for tracking trends in server logs - powered by the Cloudera Hadoop Distribution on EC2 | ||||||||||
Annotated Wikiextractor | 88 | 12 years ago | gpl-3.0 | Python | ||||||
Simple Wikipedia plain text extractor with article link annotations and Hadoop support. | ||||||||||
Wikireverse | 39 | 5 years ago | 2 | mit | Java | |||||
Hadoop jobs for WikiReverse project. Parses Common Crawl data for links to Wikipedia articles. | ||||||||||
Awesome Newsletters | 25 | 7 years ago | 1 | |||||||
A curated list of developer newsletters (e.g. NoSQL Weekly, Python Weekly, etc.) | ||||||||||
Wikipediaphilosophy | 18 | 10 years ago | Python | |||||||
do all first links on wikipedia _really_ lead to philosophy? | ||||||||||
Translate | 7 | 7 months ago | ||||||||
translate articles to chinese | ||||||||||
Elasticsearch Springboot Starter Master | 5 | 3 years ago | Java | |||||||
Pagerank | 2 | 4 years ago | Java | |||||||
This repository provides 2 PageRank implementations for the internal wikipedia graph. One in Spark and one in Hadoop MapReduce. |
This project is a simple wrapper around the Wikipedia Extractor by Medialab. It generates a JSON object for each article. The JSON object contains the id, title and plain text of the article, as well as annotations of article links in the text.
{"url": "http://en.wikipedia.org/wiki/Anarchism",
"text": "Anarchism.\nAnarchism is a political philosophy which considers the state
undesirable, unnecessary and harmful, and instead promotes a stateless society, or
anarchy. It seeks to diminish ...",
"id": 12,
"annotations": [
{"to": 46, "from": 26, "id": "Political_philosophy", "label": "political philosophy"},
{"to": 72, "from": 67, "id": "State_(polity)", "label": "state"},
{"to": 163, "from": 156, "id": "Anarchy", "label": "anarchy"},
...
]}
Annotations are stored in an ordered list. A single annotation has the following form:
{"to": 1165, "from": 1156, "id": "Socialist", "label": "socialist"}
from
: start positon of the stringto
: end position of the stringid
: Wikipedia/DBPedia article namelabel
: the label of the link in the text (what part of the text was linked)The extractor can be run from the Terminal or on a Hadoop MapReduce cluster.
As this is only an extention of the orgininal WikiExtractor, the usage is more or less the same.
$ python annotated_wikiextractor.py --help
Annotated Wikipedia Extractor:
Extracts and cleans text from Wikipedia database dump and stores output in a
number of files of similar size in a given directory. Each file contains
several documents in JSON format (one document per line) with additional
annotations for the links in the article.
Usage:
annotated_wikiextractor.py [options]
Options:
-k, --keep-anchors : do not drop annotations for anchor links (e.g. Anarchism#gender)
-c, --compress : compress output files using bzip2 algorithm
-b ..., --bytes=... : put specified bytes per output file (500K by default)
-o ..., --output=... : place output files in specified directory (current
directory by default)
--help : display this help and exit
--usage : display script usage
To convert the whole Wikipedia Dump to plain text, use the following command:
bzip2 -dc enwiki-20110115-pages-articles.xml.bz2 | python annotated_wikiextractor.py -o extracted/
If you want the output files to be compressed, use the -c option:
bzip2 -dc enwiki-20110115-pages-articles.xml.bz2 | python annotated_wikiextractor.py -co extracted/
The output will be written to
the folder specified in the -output
parameter and will have the following format:
Anarchism {...}
Anaphora {...}
...
To run the extractor on a Hadoop MapReduce cluster, the Hadoop Streaming API can be used.
mapreduce jodaiber$ hadoop jar $HADOOP_PATH/contrib/streaming/hadoop-0.20.2-streaming.jar \
-file ./mapper.py -mapper ./mapper.py \
-inputreader "StreamXmlRecordReader,begin=<page>,end=</page>" \
-input ../test/resources/wikien.xml \
-output out
In this case, the XML Dump must be available in HDFS (or locally, as is the case above) in its uncompressed form.
In the case of Wikipedia XML dumps, it is rather unhandy to process uncompressed XML. The uncompressed English Wikipedia dump, for example, can be up to 25GB in size (compared to about 6GB in its original GZIP compression).
To process compressed XML dumps, a change to hadoop-XXX-core.jar
is
necessary. These changes are documented as issue
MAPREDUCE-589 and
should be applied with care. For the use case of this project, the change is
sufficient.
To make the necessary change in Hadoop 0.20.2, replace the file $HADOOP_PATH/hadoop-0.20.2-core.jar
with the jar file provided in
annotated_wikiextractor/mapreduce/hadoop/hadoop-0.20.2-core.custom.jar
.
The extractor can now be run with a custom version of StreamXmlRecordReader
:
mapreduce jodaiber$ hadoop jar hadoop/hadoop-0.20.2-streaming.custom.jar \
-file ./mapper.py -mapper ./mapper.py \
-inputreader "StreamXmlRecordReader,begin=<page>,end=</page>" \
-input ../test/resources/wikien.xml.gz \
-output out