Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Omnibus
/
sort_document
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Omnibus
commited on
Feb 26, 2024
Commit
d08dc84
·
verified
·
1 Parent(s):
9414639
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -65,7 +65,7 @@ def get_nouns(text,steps=1):
65
n_cnt=0
66
nx=key_cnt
67
while True:
68
-
if nx
>
1:
69
n_cnt+=1
70
nx = nx/char_len
71
else:
65
n_cnt=0
66
nx=key_cnt
67
while True:
68
+
if nx
>=
1:
69
n_cnt+=1
70
nx = nx/char_len
71
else: