Created by: yoptar
Done and tested for NER and SQUAD pipelines. One can serialize all supported chainer components into bytes with
chainer = build_model(config_path, download=True)
raw_bytes = chainer.serialize()
and then deserialize another instance for the same config but without model files with
chainer = build_model(config_path, serialized=raw_bytes)
Every serializable component that does not support this logic will log a warning message that suggests using load_path