gpt4 book ai didi

edu.illinois.cs.cogcomp.sl.util.WeightVector.setElement()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-25 05:07:05 31 4
gpt4 key购买 nike

本文整理了Java中edu.illinois.cs.cogcomp.sl.util.WeightVector.setElement()方法的一些代码示例,展示了WeightVector.setElement()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WeightVector.setElement()方法的具体详情如下:
包路径:edu.illinois.cs.cogcomp.sl.util.WeightVector
类名称:WeightVector
方法名:setElement

WeightVector.setElement介绍

暂无

代码示例

代码示例来源:origin: CogComp/cogcomp-nlp

public static WeightVector load(String fileName) {
  try {
    GZIPInputStream zipin = new GZIPInputStream(new FileInputStream(fileName));
    BufferedReader reader = new BufferedReader(new InputStreamReader(zipin));
    String line;
    line = reader.readLine().trim();
    if (!line.equals("WeightVector")) {
      reader.close();
      throw new IOException("Invalid model file.");
    }
    line = reader.readLine().trim();
    int size = Integer.parseInt(line);
    WeightVector w = new WeightVector(size);
    while ((line = reader.readLine()) != null) {
      line = line.trim();
      String[] parts = line.split(":");
      int index = Integer.parseInt(parts[0]);
      float value = Float.parseFloat(parts[1]);
      w.setElement(index, value);
    }
    zipin.close();
    return w;
  } catch (Exception e) {
    log.error("Error loading model file {}", fileName);
    System.exit(-1);
  }
  return null;
}

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-sl-core

public static WeightVector load(String fileName) {
  try {
    GZIPInputStream zipin = new GZIPInputStream(new FileInputStream(fileName));
    BufferedReader reader = new BufferedReader(new InputStreamReader(zipin));
    String line;
    line = reader.readLine().trim();
    if (!line.equals("WeightVector")) {
      reader.close();
      throw new IOException("Invalid model file.");
    }
    line = reader.readLine().trim();
    int size = Integer.parseInt(line);
    WeightVector w = new WeightVector(size);
    while ((line = reader.readLine()) != null) {
      line = line.trim();
      String[] parts = line.split(":");
      int index = Integer.parseInt(parts[0]);
      float value = Float.parseFloat(parts[1]);
      w.setElement(index, value);
    }
    zipin.close();
    return w;
  } catch (Exception e) {
    log.error("Error loading model file {}", fileName);
    System.exit(-1);
  }
  return null;
}

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-srl

public static WeightVector load(String fileName) {
  try {
    GZIPInputStream zipin = new GZIPInputStream(new FileInputStream(fileName));
    BufferedReader reader = new BufferedReader(new InputStreamReader(zipin));
    String line;
    line = reader.readLine().trim();
    if (!line.equals("WeightVector")) {
      reader.close();
      throw new IOException("Invalid model file.");
    }
    line = reader.readLine().trim();
    int size = Integer.parseInt(line);
    WeightVector w = new WeightVector(size);
    while ((line = reader.readLine()) != null) {
      line = line.trim();
      String[] parts = line.split(":");
      int index = Integer.parseInt(parts[0]);
      float value = Float.parseFloat(parts[1]);
      w.setElement(index, value);
    }
    zipin.close();
    return w;
  } catch (Exception e) {
    log.error("Error loading model file {}", fileName);
    System.exit(-1);
  }
  return null;
}

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-verbsense

public static WeightVector load(String fileName) {
  try {
    GZIPInputStream zipin = new GZIPInputStream(new FileInputStream(fileName));
    BufferedReader reader = new BufferedReader(new InputStreamReader(zipin));
    String line;
    line = reader.readLine().trim();
    if (!line.equals("WeightVector")) {
      reader.close();
      throw new IOException("Invalid model file.");
    }
    line = reader.readLine().trim();
    int size = Integer.parseInt(line);
    WeightVector w = new WeightVector(size);
    while ((line = reader.readLine()) != null) {
      line = line.trim();
      String[] parts = line.split(":");
      int index = Integer.parseInt(parts[0]);
      float value = Float.parseFloat(parts[1]);
      w.setElement(index, value);
    }
    zipin.close();
    return w;
  } catch (Exception e) {
    log.error("Error loading model file {}", fileName);
    System.exit(-1);
  }
  return null;
}

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-verbsense

int index = Integer.parseInt(parts[0]);
float value = Float.parseFloat(parts[1]);
w.setElement(index, value);

代码示例来源:origin: CogComp/cogcomp-nlp

int index = Integer.parseInt(parts[0]);
float value = Float.parseFloat(parts[1]);
w.setElement(index, value);

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-srl

int index = Integer.parseInt(parts[0]);
float value = Float.parseFloat(parts[1]);
w.setElement(index, value);

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-sl-core

int index = Integer.parseInt(parts[0]);
float value = Float.parseFloat(parts[1]);
w.setElement(index, value);

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com