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

com.aliyun.odps.ml.ModelProcessor Maven / Gradle / Ivy

There is a newer version: 0.51.5-public
Show newest version
package com.aliyun.odps.ml;

import com.aliyun.odps.rest.SimpleXmlUtils;
import com.aliyun.odps.simpleframework.xml.Element;
import com.aliyun.odps.simpleframework.xml.Root;
import com.aliyun.odps.simpleframework.xml.convert.Convert;

@Root(name = "Processor", strict = false)
public class ModelProcessor {
	@Element(name = "Id", required = false)
    @Convert(SimpleXmlUtils.EmptyStringConverter.class)
    public String className;
	
	@Element(name = "LibName", required = false)
	@Convert(SimpleXmlUtils.EmptyStringConverter.class)
	public String libName;
	
	@Element(name = "RefResource", required = false)
	@Convert(SimpleXmlUtils.EmptyStringConverter.class)
	public String refResource;
	
	@Element(name = "Configuration", required = false)
	@Convert(SimpleXmlUtils.EmptyStringConverter.class)
	public String configuration;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy