All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mlflow.sagemaker.MLeapSchemaReader.scala Maven / Gradle / Ivy

There is a newer version: 2.21.0
Show newest version
package org.mlflow.sagemaker

import java.io.File
import java.nio.charset.Charset

import ml.combust.mleap.core.types.StructType
import ml.combust.mleap.json.JsonSupport._
import org.apache.commons.io.FileUtils
import spray.json._

class MLeapSchemaReader() {

  def fromFile(filePath: String) : StructType = {
    val json = FileUtils.readFileToString(new File(filePath), Charset.defaultCharset())
    json.parseJson.convertTo[StructType]
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy