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

com.tencent.angel.spark.ml.psf.embedding.bad.W2VRandomParam Maven / Gradle / Ivy

package com.tencent.angel.spark.ml.psf.embedding.bad;

import com.tencent.angel.PartitionKey;
import com.tencent.angel.ml.matrix.psf.update.base.PartitionUpdateParam;
import com.tencent.angel.ml.matrix.psf.update.base.UpdateParam;
import com.tencent.angel.psagent.PSAgentContext;

import java.util.ArrayList;
import java.util.List;

public class W2VRandomParam extends UpdateParam {

  int dimension;

  public W2VRandomParam(int matrixId, int dimension) {
    super(matrixId);
    this.dimension = dimension;
  }

  @Override
  public List split() {
    List params = new ArrayList<>();
    List pkeys = PSAgentContext.get().getMatrixMetaManager().getPartitions(matrixId);
    for (PartitionKey pkey: pkeys) {
      params.add(new W2VRandomPartitionParam(matrixId,
        pkey,
        dimension));
    }
    return params;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy