public Object read(final InputStream is) {
final TrainingContinuation result = new TrainingContinuation();
final EncogReadHelper in = new EncogReadHelper(is);
EncogFileSection section;
while ((section = in.readNextSection()) != null) {
if (section.getSectionName().equals("CONT")
&& section.getSubSectionName().equals("PARAMS")) {
final Map<String, String> params = section.parseParams();
for (final String key : params.keySet()) {
if (key.equalsIgnoreCase("type")) {