FidoProject/Fido

Standardization of Storage

truell20 opened this issue · 4 comments

Because of ISEF, I don't really have time to do this right now. However, serialization for Learner, Trainer, and Interpolator subclasses should follow the method outlined here. Right now, unserializing a subclass of one of these three without knowing the subclass is impossible.

  • Learner
  • Trainer
  • Interpolator (Already Done)

@FlyingGraysons

Trainer is done @truell20

If we want Fido to run seamless on microcontrollers, we're gonna have to make some compromises regarding serialization. I would be in favor of a single serialization factory-type class than can serialize and construct Learners, Trainers, and Interpolators. For microcontrollers the class could simply not be included.

@joshuagruenstein Can we not use char arrays to serialize and unserialize objects?