use of org.nd4j.shade.jackson.dataformat.yaml.YAMLFactory in project deeplearning4j by deeplearning4j.
the class NeuralNetConfiguration method initMapperYaml.
private static ObjectMapper initMapperYaml() {
ObjectMapper ret = new ObjectMapper(new YAMLFactory());
configureMapper(ret);
return ret;
}
use of org.nd4j.shade.jackson.dataformat.yaml.YAMLFactory in project deeplearning4j by deeplearning4j.
the class KerasModel method parseYamlString.
/**
* Convenience function for parsing JSON strings.
*
* @param json String containing valid JSON
* @return Nested (key,value) map of arbitrary depth
* @throws IOException
*/
public static Map<String, Object> parseYamlString(String json) throws IOException {
ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
TypeReference<HashMap<String, Object>> typeRef = new TypeReference<HashMap<String, Object>>() {
};
return mapper.readValue(json, typeRef);
}
Aggregations