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
11a413f1
Commit
11a413f1
authored
Mar 05, 2015
by
PkSM3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[BUGFIX] math domain error
parent
a4c676fe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
38 deletions
+39
-38
corpustools.py
parsing/corpustools.py
+39
-38
No files found.
parsing/corpustools.py
View file @
11a413f1
...
@@ -374,6 +374,7 @@ def compute_tfidf(corpus):
...
@@ -374,6 +374,7 @@ def compute_tfidf(corpus):
'''
%
(
Node
.
__table__
.
name
,
Node_Ngram
.
__table__
.
name
,
corpus
.
id
,
))
'''
%
(
Node
.
__table__
.
name
,
Node_Ngram
.
__table__
.
name
,
corpus
.
id
,
))
cursor
.
execute
(
'SELECT COUNT(*) FROM tmp__st'
)
cursor
.
execute
(
'SELECT COUNT(*) FROM tmp__st'
)
D
=
cursor
.
fetchone
()[
0
]
D
=
cursor
.
fetchone
()[
0
]
if
D
>
0
:
lnD
=
log
(
D
)
lnD
=
log
(
D
)
cursor
.
execute
(
'UPDATE tmp__idf SET idf = idf +
%
f'
%
(
lnD
,
))
cursor
.
execute
(
'UPDATE tmp__idf SET idf = idf +
%
f'
%
(
lnD
,
))
# show off
# show off
...
...
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