Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Absinth - A Small World of Semantic Similarity
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Victor Zimmermann
Absinth - A Small World of Semantic Similarity
Commits
94c9807f
Commit
94c9807f
authored
7 years ago
by
Victor Zimmermann
Browse files
Options
Downloads
Patches
Plain Diff
Checks if topic already processed, allows parallel processes.
parent
2c81f0fe
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/absinth.py
+8
-6
8 additions, 6 deletions
src/absinth.py
with
8 additions
and
6 deletions
src/absinth.py
+
8
−
6
View file @
94c9807f
...
...
@@ -114,7 +114,7 @@ def frequencies(corpus_path, target):
i
+=
1
#update print
print
(
'
[a] 100%
\t
Nodes: {}
\t
Edges: {}.
'
.
format
(
len
(
node_freq
),
len
(
edge_freq
))
,
target
)
print
(
'
[a] 100%
\t
Nodes: {}
\t
Edges: {}.
'
.
format
(
len
(
node_freq
),
len
(
edge_freq
))
+
'
\t
(
'
+
target
+
'
)
'
)
return
node_freq
,
edge_freq
...
...
@@ -312,6 +312,10 @@ def WSI(topic_id, topic_name, results):
#removes trailing new_lines
old_target
=
topic_name
.
strip
()
#original target
if
old_target
.
strip
()
in
[
f
.
replace
(
'
.absinth
'
,
''
)
for
f
in
os
.
listdir
(
config
.
output
)]:
return
None
out_buffer
+=
(
"
[A] Word sense induction for
'"
+
old_target
+
"'
:
\n
"
)
#in topics longer than two words, the leading 'the' can generally be removed without changing the sense
...
...
@@ -330,11 +334,11 @@ def WSI(topic_id, topic_name, results):
#counts occurences of single words, as well as cooccurrences, saves it in dictionary
print
(
'
[a]
'
,
'
Counting nodes and edges.
\t
(
'
+
old_target
+
'
)
'
)
node_freq
,
edge_freq
=
frequencies
(
corpus_path
,
target
)
out_buffer
+=
'
[A] Nodes: {}
\t
Edges: {}
\n
'
.
format
(
str
(
len
(
node_freq
)),
str
(
len
(
edge_freq
)))
#builds graph from these dictionaries, also applies multiple filters
print
(
'
[a]
'
,
'
Building graph.
\t
(
'
+
old_target
+
'
)
'
)
G
=
build_graph
(
node_freq
,
edge_freq
)
out_buffer
+=
'
[A] Nodes: {}
\t
Edges: {}
\n
'
.
format
(
str
(
len
(
G
.
nodes
)),
str
(
len
(
G
.
edges
)))
#finds root hubs (senses) within the graph + more filters for these
print
(
'
[a]
'
,
'
Collecting root hubs.
\t
(
'
+
old_target
+
'
)
'
)
...
...
@@ -399,15 +403,13 @@ if __name__ == '__main__':
# topics.txt is a list of target words
topics
=
dict
()
processed_topics
=
[
f
.
replace
(
'
.absinth
'
,
''
)
for
f
in
os
.
listdir
(
config
.
output
)]
with
open
(
data_path
+
'
topics.txt
'
,
'
r
'
)
as
topics_file
:
for
line
in
topics_file
.
readlines
()[
1
:]:
l
=
line
.
split
(
'
\t
'
)
if
l
[
1
].
strip
()
not
in
processed_topics
:
topics
[
l
[
0
]]
=
l
[
1
]
topics
[
l
[
0
]]
=
l
[
1
]
# multiprocessing
with
Pool
(
4
)
as
pool
:
...
...
@@ -415,4 +417,4 @@ if __name__ == '__main__':
pool
.
starmap
(
WSI
,
[(
key
,
value
,
results
)
for
key
,
value
in
topics
.
items
()])
#for key, value in topics.items():
#
WSI(key, value, results)
#
WSI(key, value, results)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment