Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
blacksquadece
/
KnowledgeGraph
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
blacksquadece
commited on
May 3, 2023
Commit
4d98925
·
1 Parent(s):
5f141a5
Create utils.py
Browse files
Files changed (1)
hide
show
utils.py
+6
-0
utils.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
2
+
def clip_text(t, lenght = 4):
3
+
t_sub = t.replace("...", "dotdotdot")
4
+
t_clipped = ".".join(t_sub.split(".")[:lenght]) + "."
5
+
t_reverted = t_clipped.replace("dotdotdot", "...")
6
+
return t_reverted