A Gentle Introduction to Serialization for Python - MachineLearningMastery.com

Serialization refers to the process of converting a data object (e.g., Python objects, Tensorflow models) into a format that allows us to store or transmit the data and then recreate the object whe...

By · · 1 min read
A Gentle Introduction to Serialization for Python - MachineLearningMastery.com

Source: MachineLearningMastery.com

Serialization refers to the process of converting a data object (e.g., Python objects, Tensorflow models) into a format that allows us to store or transmit the data and then recreate the object when needed using the reverse process of deserialization. There are different formats for the serialization of data, such as JSON, XML, HDF5, and […]