Y
Hacker News
new
|
ask
|
show
|
jobs
by
joshuamorton
3358 days ago
To expand on fnord, to my knowledge, pickle handles all of these things. Its still a bad solution, but it does everything you want.
pickle.dump(f, anyobject) anyobject = pickle.load(f)
1 comments
sidlls
3358 days ago
Pickle had size constraints that make it unsuitable in certain ML applications.
link
joshuamorton
3358 days ago
Indeed, but I expect that's also true for matlab's vanilla solution.
link
vosper
3357 days ago
Does using protocol version 4 help with this?
link