-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwikipedia_cleaner.py
85 lines (73 loc) · 3.05 KB
/
wikipedia_cleaner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# File : core.classifiers.RCNLPTextClassifier.py
# Description : Echo State Network for text classification.
# Auteur : Nils Schaetti <nils.schaetti@unine.ch>
# Date : 01.02.2017 17:59:05
# Lieu : Nyon, Suisse
#
# This file is part of the Reservoir Computing NLP Project.
# The Reservoir Computing Memory Project is a set of free software:
# you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Foobar is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with Foobar. If not, see <http://www.gnu.org/licenses/>.
#
import argparse
import os
import logging
import io
####################################################
# Main function
####################################################
if __name__ == "__main__":
# Argument parser
parser = argparse.ArgumentParser(description="RCNLP - Clean Wikipedia dump")
# Argument
parser.add_argument("--dataset", type=str, help="Dataset's directory", required=True)
parser.add_argument("--log-level", type=int, help="Log level", default=20)
args = parser.parse_args()
# Init logging
logging.basicConfig(level=args.log_level)
logger = logging.getLogger(name="RCNLP")
# For each directory
for subdirectory in os.listdir(args.dataset):
# Directory path
directory_path = os.path.join(args.dataset, subdirectory)
# Is DIR
if os.path.isdir(directory_path):
# Directory path
logger.info(u"Entering directory {}".format(directory_path))
# List file
for filename in os.listdir(directory_path):
file_path = os.path.join(directory_path, filename)
# Open file
text_content = io.open(file_path, 'r', encoding='utf-8').read()
# Replace .\n
text_content = text_content.replace(u".\n", u". ")
for i in range(15):
text_content = text_content.replace(u" ", u" ")
# end for
for i in range(15):
text_content = text_content.replace(u"\n\n", u"\n")
# end for
text_content = text_content.replace(u". \n", u". ")
text_content = text_content.replace(u". #", u".\n#")
text_content = text_content.replace(u"\n", u". ")
text_content = text_content.replace(u"#. ", u"#\n")
text_content = text_content.replace(u". #", u"\n#")
# Write
logger.info(u"Writing {}".format(file_path))
io.open(file_path, 'w', encoding='utf-8').write(text_content)
# end for
# end if
# end for
# end if