Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Jatin7860
/
DF
like
2
arxiv:
2005.05535
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
main
DF
/
core
/
structex.py
Jatin7860
Upload 226 files
fcd5579
verified
over 2 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
175 Bytes
import
struct
def
struct_unpack
(
data, counter, fmt
):
fmt_size = struct.calcsize(fmt)
return
(counter+fmt_size,) + struct.unpack (fmt, data[counter:counter+fmt_size])