Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
derful
/
MinerU
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
MinerU
/
magic_pdf
/
libs
/
math.py
derful
Upload folder using huggingface_hub
240e0a0
verified
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
177 Bytes
def
float_gt
(
a, b
):
if
0.0001
>=
abs
(a -b):
return
False
return
a > b
def
float_equal
(
a, b
):
if
0.0001
>=
abs
(a-b):
return
True
return
False