热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

org.cogcomp.Datastore.getFile()方法的使用及代码示例

本文整理了Java中org.cogcomp.Datastore.getFile()方法的一些代码示例,展示了Datastore.getFile()

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

Datastore.getFile介绍

暂无

代码示例

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

private Map> getLegalSensesMap() {
Map> map = new HashMap<>();
Datastore ds = null;
File senseFile = null;
try {
ds = new Datastore(new ResourceConfigurator().getDefaultConfig());
senseFile =
ds.getFile("edu.illinois.cs.cogcomp.verbsense", "sense-list.txt", 1.0, false);
} catch (InvalidPortException | InvalidEndpointException | DatastoreException e) {
e.printStackTrace();
}
try {
for (String line : LineIO.read(senseFile.getAbsolutePath())) {
String predicate = line.split("\t")[0];
String[] senseArray = line.split("\t")[1].split(",");
Set senseSet = new HashSet<>(Arrays.asList(senseArray));
map.put(predicate, senseSet);
}
} catch (FileNotFoundException e) {
log.error("Unable to load list of legal senses: ", e);
System.exit(-1);
}
return map;
}

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

private Map> getLegalSensesMap() {
Map> map = new HashMap<>();
Datastore ds = null;
File senseFile = null;
try {
ds = new Datastore(new ResourceConfigurator().getDefaultConfig());
senseFile =
ds.getFile("edu.illinois.cs.cogcomp.verbsense", "sense-list.txt", 1.0, false);
} catch (InvalidPortException | InvalidEndpointException | DatastoreException e) {
e.printStackTrace();
}
try {
for (String line : LineIO.read(senseFile.getAbsolutePath())) {
String predicate = line.split("\t")[0];
String[] senseArray = line.split("\t")[1].split(",");
Set senseSet = new HashSet<>(Arrays.asList(senseArray));
map.put(predicate, senseSet);
}
} catch (FileNotFoundException e) {
log.error("Unable to load list of legal senses: ", e);
System.exit(-1);
}
return map;
}

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

ds.getFile("org.cogcomp.mate-tools",
"CoNLL2009-ST-English-ALL.anna.lemmatizer.model", 3.3, false);
File parserModel =
ds.getFile("org.cogcomp.mate-tools",
"CoNLL2009-ST-English-ALL.anna.parser.model", 3.3, false);
File posModel =
ds.getFile("org.cogcomp.mate-tools",
"CoNLL2009-ST-English-ALL.anna.postagger.model", 3.3, false);
File pathLSTM = ds.getFile("uk.ac.ed.inf", "pathLSTM.model", 1.0, false);

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

/**
* Retrieves the relevant file from the DataStore
*/
private File getFile(FileType type) throws DatastoreException {
ResourceManager rm = new ResourceConfigurator().getDefaultConfig();
Datastore ds = new Datastore(rm.getString("datastoreEndpoint"));
if (type.equals(FileType.Embedding)) {
File f = ds.getFile("org.cogcomp.dataless", "memorybasedESA.txt", 1.0);
return f;
} else {
File f = ds.getFile("org.cogcomp.dataless", "pageIDMapping.txt", 1.0);
return f;
}
}

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

/**
* Retrieves the relevant file from the DataStore
*/
private File getFile(FileType type) throws DatastoreException {
ResourceManager rm = new ResourceConfigurator().getDefaultConfig();
Datastore ds = new Datastore(rm.getString("datastoreEndpoint"));
if (type.equals(FileType.Embedding)) {
File f = ds.getFile("org.cogcomp.dataless", "memorybasedESA.txt", 1.0);
return f;
} else {
File f = ds.getFile("org.cogcomp.dataless", "pageIDMapping.txt", 1.0);
return f;
}
}

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

private synchronized void loadFromDatastore() throws Exception {
if (loaded)
return;
Datastore dsNoCredentials = new Datastore(new ResourceConfigurator().getDefaultConfig());
File f = dsNoCredentials.getFile("org.cogcomp.roget.thesaurus", "rogetThesaurus", 1.3);
loadWithURL(f.toURI().toURL());
}

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

if (method.equals(EmbeddingConstant.word2vec)) {
try {
f = ds.getFile("org.cogcomp.wordembedding", "word2vec.txt", 1.5);
} catch (DatastoreException e) {
e.printStackTrace();
f = ds.getFile("org.cogcomp.wordembedding", "glove.txt", 1.5);
} catch (DatastoreException e) {
f = ds.getFile("org.cogcomp.wordembedding", "phrase2vec.txt", 1.5);
} catch (DatastoreException e) {
f = ds.getFile("org.cogcomp.wordembedding", "memorybasedESA.txt", 1.5);
} catch (DatastoreException e) {
f = ds.getFile("org.cogcomp.wordembedding", "pageIDMapping.txt", 1.5);
} catch (DatastoreException e) {

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

private synchronized void loadFromDatastore() throws Exception {
if (loaded)
return;
Datastore dsNoCredentials = new Datastore(new ResourceConfigurator().getDefaultConfig());
File f = dsNoCredentials.getFile("org.cogcomp.roget.thesaurus", "rogetThesaurus", 1.3);
loadWithURL(f.toURI().toURL());
}

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

public static VerbClassDictionary getDictionaryFromDatastore() {
if (verbClassDictiOnary== null) {
synchronized (LevinVerbClassFeature.class) {
if (verbClassDictiOnary== null) {
log.info("Reading verb class dictionary. Looking for " + verbClassFile + " in the datastore");
try {
Datastore dsNoCredentials = new Datastore(new ResourceConfigurator().getDefaultConfig());
File f = dsNoCredentials.getFile("org.cogcomp.levin.verb.class", "levin-verbClass", 1.6);
InputStream resource = new FileInputStream(f);
verbClassDictiOnary= new VerbClassDictionary(resource);
} catch (Exception e) {
e.printStackTrace();
log.error("Unable to read the verb class dictionary", e);
System.exit(-1);
}
List strings = verbClassDictionary.getClass("give");
log.info("Loaded verb class dictionary. Test: classes for 'give' are {}", strings);
}
}
}
return verbClassDictionary;
}

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

public static VerbClassDictionary getDictionaryFromDatastore() {
if (verbClassDictiOnary== null) {
synchronized (LevinVerbClassFeature.class) {
if (verbClassDictiOnary== null) {
log.info("Reading verb class dictionary. Looking for " + verbClassFile + " in the datastore");
try {
Datastore dsNoCredentials = new Datastore(new ResourceConfigurator().getDefaultConfig());
File f = dsNoCredentials.getFile("org.cogcomp.levin.verb.class", "levin-verbClass", 1.6);
InputStream resource = new FileInputStream(f);
verbClassDictiOnary= new VerbClassDictionary(resource);
} catch (Exception e) {
e.printStackTrace();
log.error("Unable to read the verb class dictionary", e);
System.exit(-1);
}
List strings = verbClassDictionary.getClass("give");
log.info("Loaded verb class dictionary. Test: classes for 'give' are {}", strings);
}
}
}
return verbClassDictionary;
}

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

/**
* Retrieves the relevant file from the DataStore
*/
private File getFile() throws DatastoreException {
ResourceManager rm = new ResourceConfigurator().getDefaultConfig();
Datastore ds = new Datastore(rm.getString("datastoreEndpoint"));
File f = ds.getFile("org.cogcomp.dataless", "word2vec.txt", 1.0);
return f;
}

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

public void loadFromDataStore() throws Exception {
Datastore dsNoCredentials = new Datastore(new ResourceConfigurator().getDefaultConfig());
File f = dsNoCredentials.getFile("org.cogcomp.brown-clusters", file, 1.3);
InputStream is = new FileInputStream(f);
loadFromInputStream(is);
}

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

public void loadFromDataStore() throws Exception {
Datastore dsNoCredentials = new Datastore(new ResourceConfigurator().getDefaultConfig());
File f = dsNoCredentials.getFile("org.cogcomp.brown-clusters", file, 1.3);
InputStream is = new FileInputStream(f);
loadFromInputStream(is);
}

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

/**
* Retrieves the relevant file from the DataStore
*/
private File getFile() throws DatastoreException {
ResourceManager rm = new ResourceConfigurator().getDefaultConfig();
Datastore ds = new Datastore(rm.getString("datastoreEndpoint"));
File f = ds.getFile("org.cogcomp.dataless", "word2vec.txt", 1.0);
return f;
}

推荐阅读
  • 深入解析Spring启动过程
    本文详细介绍了Spring框架的启动流程,帮助开发者理解其内部机制。通过具体示例和代码片段,解释了Bean定义、工厂类、读取器以及条件评估等关键概念,使读者能够更全面地掌握Spring的初始化过程。 ... [详细]
  • 深入解析SpringMVC核心组件:DispatcherServlet的工作原理
    本文详细探讨了SpringMVC的核心组件——DispatcherServlet的运作机制,旨在帮助有一定Java和Spring基础的开发人员理解HTTP请求是如何被映射到Controller并执行的。文章将解答以下问题:1. HTTP请求如何映射到Controller;2. Controller是如何被执行的。 ... [详细]
  • 本文详细介绍了 Apache Jena 库中的 Txn.executeWrite 方法,通过多个实际代码示例展示了其在不同场景下的应用,帮助开发者更好地理解和使用该方法。 ... [详细]
  • Scala 实现 UTF-8 编码属性文件读取与克隆
    本文介绍如何使用 Scala 以 UTF-8 编码方式读取属性文件,并实现属性文件的克隆功能。通过这种方式,可以确保配置文件在多线程环境下的一致性和高效性。 ... [详细]
  • 基于KVM的SRIOV直通配置及性能测试
    SRIOV介绍、VF直通配置,以及包转发率性能测试小慢哥的原创文章,欢迎转载目录?1.SRIOV介绍?2.环境说明?3.开启SRIOV?4.生成VF?5.VF ... [详细]
  • 在 Flutter 开发过程中,开发者经常会遇到 Widget 构造函数中的可选参数 Key。对于初学者来说,理解 Key 的作用和使用场景可能是一个挑战。本文将详细探讨 Key 的概念及其应用场景,并通过实例帮助你更好地掌握这一重要工具。 ... [详细]
  • 深入解析Redis内存对象模型
    本文详细介绍了Redis内存对象模型的关键知识点,包括内存统计、内存分配、数据存储细节及优化策略。通过实际案例和专业分析,帮助读者全面理解Redis内存管理机制。 ... [详细]
  • 对象自省自省在计算机编程领域里,是指在运行时判断一个对象的类型和能力。dir能够返回一个列表,列举了一个对象所拥有的属性和方法。my_list[ ... [详细]
  • 本文详细解析了Java中hashCode()和equals()方法的实现原理及其在哈希表结构中的应用,探讨了两者之间的关系及其实现时需要注意的问题。 ... [详细]
  • 本文详细介绍了 com.facebook.drawee.view.SimpleDraweeView 中的 setScaleType 方法,提供了多个实际代码示例,并解释了其在不同场景下的应用。 ... [详细]
  • 尽管使用TensorFlow和PyTorch等成熟框架可以显著降低实现递归神经网络(RNN)的门槛,但对于初学者来说,理解其底层原理至关重要。本文将引导您使用NumPy从头构建一个用于自然语言处理(NLP)的RNN模型。 ... [详细]
  • 深入理解Redis的数据结构与对象系统
    本文详细探讨了Redis中的数据结构和对象系统的实现,包括字符串、列表、集合、哈希表和有序集合等五种核心对象类型,以及它们所使用的底层数据结构。通过分析源码和相关文献,帮助读者更好地理解Redis的设计原理。 ... [详细]
  • 深入解析Java枚举及其高级特性
    本文详细介绍了Java枚举的概念、语法、使用规则和应用场景,并探讨了其在实际编程中的高级应用。所有相关内容已收录于GitHub仓库[JavaLearningmanual](https://github.com/Ziphtracks/JavaLearningmanual),欢迎Star并持续关注。 ... [详细]
  • This request pertains to exporting the hosted_zone_id attribute associated with the aws_rds_cluster resource in Terraform configurations. The absence of this attribute can lead to issues when integrating DNS records with Route 53. ... [详细]
  • 探讨 HDU 1536 题目,即 S-Nim 游戏的博弈策略。通过 SG 函数分析游戏胜负的关键,并介绍如何编程实现解决方案。 ... [详细]
author-avatar
文武2602897197
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有