Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
johnson906
/
recipedia
like
1
Configuration error
App
Files
Files
Community
main
recipedia
/
src
/
read_pkl.py
johnsonhung
init
2a3a041
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
118 Bytes
import
pickle
with
open
(
"../data/predicted_ingr.pkl"
,
"rb"
)
as
fp:
# Unpickling
b = pickle.load(fp)
print
(b)