本文整理汇总了Java中org.apache.commons.collections15.map.LRUMap类的典型用法代码示例。如果您正苦于以下问题:Java LRUMap类的具体用法?Java LRUMap怎么用?Java LRUMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LRUMap类属于org.apache.commons.collections15.map包,在下文中一共展示了LRUMap类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: setup
import org.apache.commons.collections15.map.LRUMap; //导入依赖的package包/类
public void setup(AInferState inferState, boolean debug, ModelType modelType, boolean allowEmptyNodes,
int K, NgramModel ngramModel,
NgramModel secondaryNgramModel,
int M, Options.ReorderType reorderType,
boolean allowConsecutiveEvents,
boolean oracleReranker, boolean useDependencies,
double interpolationFactor, boolean posAtSurfaceLevel,
String tagDelimiter, int NUM,
int ELIDED_SYMBOL, boolean numbersAsSymbol,
Indexer<String> wordIndexer, Example ex, Graph graph)
{
this.inferState = inferState;
discriminative = this.inferState instanceof DiscriminativeInferState;
this.debug = debug;
// Need this because the pc sets might be inconsistent with the types
this.allowEmptyNodes = allowEmptyNodes;
this.modelType = modelType;
this.K = K;
this.M = M;
this.ngramModel = ngramModel;
this.secondaryNgramModel = secondaryNgramModel;
this.reorderType = reorderType;
this.allowConsecutiveEvents = allowConsecutiveEvents;
this.oracleReranker = oracleReranker;
this.useDependencies = useDependencies;
this.interpolationFactor = interpolationFactor;
this.posAtSurfaceLevel = posAtSurfaceLevel;
this.tagDelimiter = tagDelimiter;
/*add NUM category and ELIDED_SYMBOL to word vocabulary. Useful for the LM calculations*/
this.NUM = NUM;
this.ELIDED_SYMBOL = ELIDED_SYMBOL;
this.numbersAsSymbol = numbersAsSymbol;
this.vocabulary = wordIndexer;
this.ex = ex;
this.graph = graph;
if(graph != null)
graph.addVertex(startNode);
// cache = Collections.synchronizedMap(new LRUMap<List<Integer>, Double>(1000));
cache = new LRUMap<List<Integer>, Double>(1000);
}
开发者ID:sinantie,项目名称:Generator,代码行数:41,代码来源:Hypergraph.java
示例2: InterpolatingElevationCache
import org.apache.commons.collections15.map.LRUMap; //导入依赖的package包/类
public InterpolatingElevationCache(ElevationProvider provider, Coordinate origin, Coordinate gridScale) {
lattice = new Lattice(origin, gridScale);
this.provider = provider;
prefetchStack = new LRUMap<Point,Object>();
cache = new LRUMap<Point,Double>(MAX_CACHE_SIZE);
prefetchStack = new LRUMap<Point, Object>(MAX_PREFETCH_SIZE);
}
开发者ID:sbliven,项目名称:earthcraft,代码行数:10,代码来源:InterpolatingElevationCache.java
注:本文中的org.apache.commons.collections15.map.LRUMap类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论