Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
d9d537f7
Commit
d9d537f7
authored
Jan 14, 2015
by
Administrator
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] Documentation for TFIDF.
parent
0fc6cb82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
functions.py
analysis/functions.py
+7
-3
No files found.
analysis/functions.py
View file @
d9d537f7
...
@@ -245,17 +245,21 @@ def get_cooc(request=None, corpus_id=None, cooc_id=None, type='node_link', n=150
...
@@ -245,17 +245,21 @@ def get_cooc(request=None, corpus_id=None, cooc_id=None, type='node_link', n=150
def
tfidf
(
corpus
,
document
,
ngram
):
def
tfidf
(
corpus
,
document
,
ngram
):
'''
Compute TF-IDF (Term Frequency - Inverse Document Frequency)
See: http://en.wikipedia.org/wiki/Tf
%
E2
%80%93
idf
'''
try
:
try
:
occurences_of_ngram
=
Node_Ngram
.
objects
.
get
(
node
=
document
,
ngram
=
ngram
)
.
weight
occurences_of_ngram
=
Node_Ngram
.
objects
.
get
(
node
=
document
,
ngram
=
ngram
)
.
weight
ngrams_by_document
=
sum
([
x
.
weight
for
x
in
Node_Ngram
.
objects
.
filter
(
node
=
document
)])
ngrams_by_document
=
sum
([
x
.
weight
for
x
in
Node_Ngram
.
objects
.
filter
(
node
=
document
)])
term_frequency
=
occurences_of_ngram
/
ngrams_by_document
term_frequency
=
occurences_of_ngram
/
ngrams_by_document
xx
=
Node
.
objects
.
filter
(
parent
=
corpus
,
type
=
NodeType
.
objects
.
get
(
name
=
"Document"
))
.
count
()
xx
=
Node
.
objects
.
filter
(
parent
=
corpus
,
type
=
NodeType
.
objects
.
get
(
name
=
"Document"
))
.
count
()
yy
=
Node_Ngram
.
objects
.
filter
(
ngram
=
ngram
)
.
count
()
yy
=
Node_Ngram
.
objects
.
filter
(
ngram
=
ngram
)
.
count
()
# filter: ON node.parent=corpus
inverse_d_frequency
=
log
(
xx
/
yy
)
inverse_d
ocument
_frequency
=
log
(
xx
/
yy
)
# result = tf * idf
# result = tf * idf
result
=
term_frequency
*
inverse_d_frequency
result
=
term_frequency
*
inverse_d
ocument
_frequency
except
Exception
as
error
:
except
Exception
as
error
:
print
(
error
,
ngram
)
print
(
error
,
ngram
)
result
=
0
result
=
0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment