-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlefffSetup.py
executable file
·205 lines (156 loc) · 5.65 KB
/
lefffSetup.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#!/usr/bin/python
# -*- coding: utf-8 -*-
####
# Copyright (C) 2006-2015 Kim Gerdes
# kim AT gerdes.fr
#
# This program is 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 2
# of the License, or (at your option) any later version.
#
# This script 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 (www.gnu.org) for more details.
#
# You can retrieve a copy of the GNU General Public License
# from http://www.gnu.org/. For a copy via US Mail, write to the
# Free Software Foundation, Inc.
# 59 Temple Place - Suite 330,
# Boston, MA 02111-1307
# USA
####
from sqlite3 import connect
import cgitb, sys, codecs, time, re
def makeFormLemmaCode(infile="lefff.txt", outfile="formlemmacode.txt"):
"""
finds words with a lemma _different_ from the form (the token)
puts them in search tree dictionary
dumps the tab separated form-lemma table in the outfile
"""
ti = time.time()
renotword=re.compile("\W|\+|\&|\<|\>|\@|\%|\$|\/|\=",re.U)
count = 0
ll=(None, None, None) # last entry
with codecs.open(infile,"r","utf-8") as inf, codecs.open(outfile,"w","utf-8") as outf:
for li in inf :
# example:
# mégisseront 100 v [pred='mégisser_____1<Suj:cln|scompl|sinf|sn,Obj:(cla|sn)>',@pers,cat=v,@F3p] mégisser_____1 Default F3p %actif
els = li.lower().split("\t") # lower !!!!!!
# els[0]=token, els[2]=cat, ...
tok, _, cat, pred = els[:4]
#filtering: cours qui a comme lemme : donner cours etc...
if cat in ["cf","cfi","pri","prel"]:
continue
if pred.startswith("[pred='"):
lemma=pred[7:].split("__")[0].replace("_"," ")
code=pred.split("@")[-1][:-1]
else: continue
#if pred in ["pouvoir","devoir","falloir"]:
#els[2]="auxMod"
###
if cat in ["poncts","ponctw","parentf","parento","ilimp","epsilon"] or cat.startswith("cl") or cat.endswith(";") or renotword.search(tok[0]) or (lemma==tok and (not "m" in code)) or (tok,lemma,code)==ll :
continue # only keep lemmas that are different from the token or multiword expressions! or (not renotword.search(lemma))
#if tok[0]!="z":
#continue
outf.write(tok+"\t"+lemma+"\t"+code+"\n")
ll=(tok,lemma,code)
count += 1
if not count%10000: print count,li
print "____",time.time()-ti,"seconds for",count,"entries"
makeFormLemmaCode()
def writeFileIntoDB(lefffile = 'formlemmacode.txt', dbpath="formlemmacode.sqlite"):
db = connect(dbpath)
cursor = db.cursor()
cursor.execute ("DROP TABLE IF EXISTS words")
cursor.execute ("""
CREATE TABLE words
(
form TEXT,
lemma TEXT,
code TEXT
);""")
cursor.execute ("""
CREATE INDEX frm ON words(form);
""")
print "table created"
print "inserting file..."
counter=0
with codecs.open(lefffile,"r","utf-8") as infile:
for line in infile:
line = line.strip()
if line:
f,l,c = line.split("\t")
cursor.execute("insert or ignore into words VALUES (?,?,?);",(f,l,c,))
counter+=1
db.commit()
db.close()
print counter,"forms inserted into", dbpath
writeFileIntoDB()
def makeFormLemma(infile="lefff.txt", outfile="formlemma.txt"):
"""
finds words with a lemma _different_ from the form (the token)
puts them in search tree dictionary
dumps the tab separated form-lemma table in the outfile
"""
ti = time.time()
renotword=re.compile("\W|\+|\&|\<|\>|\@|\%|\$|\/|\=",re.U)
count = 0
ll=[None, None] # last entry
with codecs.open(infile,"r","utf-8") as inf, codecs.open(outfile,"w","utf-8") as outf:
for li in inf :
# example:
# mégisseront 100 v [pred='mégisser_____1<Suj:cln|scompl|sinf|sn,Obj:(cla|sn)>',@pers,cat=v,@F3p] mégisser_____1 Default F3p %actif
els = li.lower().split("\t") # lower !!!!!!
# els[0]=token, els[2]=cat, ...
tok, _, cat, pred = els[:4]
#filtering: cours qui a comme lemme : donner cours etc...
if cat in ["cf","cfi","pri","prel"]:
continue
if pred.startswith("[pred='"):
lemma=pred[7:].split("__")[0].replace("_"," ")
else: continue
#if pred in ["pouvoir","devoir","falloir"]:
#els[2]="auxMod"
###
if cat in ["poncts","ponctw","parentf","parento","ilimp","epsilon"] or cat.startswith("cl") or cat.endswith(";") or renotword.search(tok[0]) or lemma== tok or (tok,lemma)==ll :
continue # only keep lemmas that are different from the token or multiword expressions! or (not renotword.search(lemma))
#if tok[0]!="z":
#continue
outf.write(tok+"\t"+lemma+"\n")
ll=(tok,lemma)
count += 1
if not count%10000: print count,li
print "____",time.time()-ti,"seconds for",count,"entries"
#makeFormLemma()
def buildlexicon(formlemmafile="formlemma.txt"):
"""
voir README dans le dossier lemmm
Tu utilises buildlexicon
1) pour fabriquer xa.fsa, xa.tbl
2) pour exploiter ces fichiers
1) Pour fabriquer: build
buildlexicon -d <dossier-ou-se-trouve-les fichiers-xa> -p <nom-des-fichiers> build < fichier lexique
2) Pour exploiter: consult
buildlexicon -d <dossier-ou-se-trouve-les fichiers-xa> -p <nom-des-fichiers> consult < mots
exemple
$ cat > detruire
forma mot1
forma mot2
formb mot3
CtrlD
$ ./buildlexicon -d . -p detruire build < detruire
...
$ ./buildlexicon -d . -p detruire consult
forma
formb
CtrlD
"""
import subprocess
args=["./buildlexicon -d . -p lemmdico build < "+formlemmafile]
pipe = subprocess.Popen(args, shell=True, stdout=subprocess.PIPE)
pipe.stdout
stdout, stderr = pipe.communicate()
print stdout, stderr
#buildlexicon()