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

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

package com.aliyun.odps.ml;

/**
 * ModelResource表示在线模型使用的资源
 *
 * @author [email protected]
 */
public class ModelResource {

  public long getCpu() {
    return cpu;
  }

  public void setCpu(long cpu) {
    this.cpu = cpu;
  }

  public long getMemory() {
    return memory;
  }

  public void setMemory(long memory) {
    this.memory = memory;
  }

  public long getGpu() {
    return gpu;
  }

  public void setGpu(long gpu) {
    this.gpu = gpu;
  }

  private long cpu;
  private long memory;
  private long gpu;
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy