Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
ddoc
/
cutoff
like
1
Model card
Files
Files and versions
xet
Community
main
cutoff
/
scripts
/
cutofflib
/
utils.py
ddoc
Upload 13 files
d2ae5b0
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
166 Bytes
import
sys
_debug =
False
def
set_debug
(
is_debug:
bool
):
global
_debug
_debug = is_debug
def
log
(
s:
str
):
if
_debug:
print
(s, file=sys.stderr)