当前位置: 首页>>代码示例>>Java>>正文


Java ObjectIntOpenHashMap.size方法代码示例

本文整理汇总了Java中com.carrotsearch.hppc.ObjectIntOpenHashMap.size方法的典型用法代码示例。如果您正苦于以下问题:Java ObjectIntOpenHashMap.size方法的具体用法?Java ObjectIntOpenHashMap.size怎么用?Java ObjectIntOpenHashMap.size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.carrotsearch.hppc.ObjectIntOpenHashMap的用法示例。


在下文中一共展示了ObjectIntOpenHashMap.size方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: run

import com.carrotsearch.hppc.ObjectIntOpenHashMap; //导入方法依赖的package包/类
private void run(File inputFile, File outputFile) {
    ObjectIntOpenHashMap<String> countedPatterns = readPatterns(inputFile);
    if (countedPatterns == null) {
        return;
    }

    // sort
    LOGGER.info("Sorting " + countedPatterns.size() + " patterns...");
    String patterns[] = new String[countedPatterns.size()];
    int counts[] = new int[patterns.length];
    int count = 0;
    for (int i = 0; i < countedPatterns.allocated.length; i++) {
        if (countedPatterns.allocated[i]) {
            patterns[count] = (String) ((Object[]) countedPatterns.keys)[i];
            counts[count] = countedPatterns.values[i];
            ++count;
        }
    }
    AssociativeSort.quickSort(counts, patterns);

    writeCounts(outputFile, counts, patterns);
}
 
开发者ID:dice-group,项目名称:Cetus,代码行数:23,代码来源:PatternCounter.java

示例2: getProb1DAux

import com.carrotsearch.hppc.ObjectIntOpenHashMap; //导入方法依赖的package包/类
private Pair<Double,StringDoublePair[]> getProb1DAux(String key)
{
	ObjectIntOpenHashMap<String> map = get(key);
	if (map == null)	return null;
	
	StringDoublePair[] probs = new StringDoublePair[map.size()-1];
	int i = 0, total = map.get(TOTAL);
	String value;
	
	for (ObjectCursor<String> cur : map.keys())
	{
		value = cur.value;
		
		if (!value.equals(TOTAL))
			probs[i++] = new StringDoublePair(value, (double)map.get(value)/total);
	}
	
	double prior = (double)total / i_total; 
	return new Pair<Double,StringDoublePair[]>(prior, probs);
}
 
开发者ID:clearnlp,项目名称:clearnlp,代码行数:21,代码来源:Prob2DMap.java

示例3: getSortedKeys

import com.carrotsearch.hppc.ObjectIntOpenHashMap; //导入方法依赖的package包/类
static public List<String> getSortedKeys(ObjectIntOpenHashMap<String> map)
{
	List<String> keys = new ArrayList<String>(map.size());
	
	for (ObjectCursor<String> cur : map.keys())
		keys.add(cur.value);
	
	Collections.sort(keys);
	return keys;
}
 
开发者ID:clearnlp,项目名称:clearnlp,代码行数:11,代码来源:UTHppc.java

示例4: register

import com.carrotsearch.hppc.ObjectIntOpenHashMap; //导入方法依赖的package包/类
/**
 * Registers a new string at the dictionary.
 * 
 * @param dimension
 *            the dimension
 * @param string
 *            the string
 * @return the int
 */
public int register(final int dimension, final String string) {

    // Prepare
    ObjectIntOpenHashMap<String> map = maps[dimension];
    int size = map.size();

    // Return or store
    if (map.putIfAbsent(string, size)) {
        return size;
    } else {
        return map.lget();
    }
}
 
开发者ID:arx-deidentifier,项目名称:arx,代码行数:23,代码来源:Dictionary.java

示例5: createMatrix

import com.carrotsearch.hppc.ObjectIntOpenHashMap; //导入方法依赖的package包/类
public static Matrix createMatrix(TokenizedDocument[] tokenizedDocuments, int windowSize) {
    // create vocabularies
    ObjectIntOpenHashMap<String> tokenVocabulary = new ObjectIntOpenHashMap<String>();
    int tokenIds[][] = new int[tokenizedDocuments.length][];
    for (int i = 0; i < tokenizedDocuments.length; ++i) {
        tokenIds[i] = new int[tokenizedDocuments[i].tokens.length];
        for (int j = 0; j < tokenizedDocuments[i].tokens.length; ++j) {
            if (tokenVocabulary.containsKey(tokenizedDocuments[i].tokens[j])) {
                tokenIds[i][j] = tokenVocabulary.lget();
            } else {
                tokenIds[i][j] = tokenVocabulary.size();
                tokenVocabulary.put(tokenizedDocuments[i].tokens[j], tokenIds[i][j]);
            }
        }
    }

    // ObjectIntOpenHashMap<String> entityVocabulary = new ObjectIntOpenHashMap<String>();
    int entityCount = 0;
    // int entityIds[][] = new int[tokenizedDocuments.length][];
    for (int i = 0; i < tokenizedDocuments.length; ++i) {
        entityCount += tokenizedDocuments[i].entities.length;
        // entityIds[i] = new int[tokenizedDocuments[i].entities.length];
        // for (int j = 0; j < tokenizedDocuments[i].entities.length; ++j) {
        // if (entityVocabulary.containsKey(tokenizedDocuments[i].entities[j].URI)) {
        // entityIds[i][j] = entityVocabulary.lget();
        // } else {
        // entityIds[i][j] = entityVocabulary.size();
        // entityVocabulary.put(tokenizedDocuments[i].entities[j].URI, entityIds[i][j]);
        // }
        // }
    }

    // Matrix matrix = new Basic2DMatrix(entityVocabulary.size(), tokenVocabulary.size());
    Matrix matrix = new Basic2DMatrix(entityCount, tokenVocabulary.size());
    // go through every document ...
    int entityId = 0, end;
    for (int d = 0; d < tokenizedDocuments.length; ++d) {
        // ...and through every entity occurring inside the documents...
        for (int e = 0; e < tokenizedDocuments[d].entities.length; ++e) {
            // entityId = entityIds[d][e];
            // ...and count the tokens before...
            end = tokenizedDocuments[d].entities[e].start;
            for (int t = Math.max(0, tokenizedDocuments[d].entities[e].start - windowSize); t < end; ++t) {
                matrix.set(entityId, tokenIds[d][t], matrix.get(entityId, tokenIds[d][t]) + 1);
            }
            // ...and after the entity
            end = Math.min(tokenIds[d].length, tokenizedDocuments[d].entities[e].end + windowSize);
            for (int t = tokenizedDocuments[d].entities[e].end; t < end; ++t) {
                matrix.set(entityId, tokenIds[d][t], matrix.get(entityId, tokenIds[d][t]) + 1);
            }
            ++entityId;
        }
    }

    return matrix;
}
 
开发者ID:dice-group,项目名称:CoreferenceResolution,代码行数:57,代码来源:Preprocessing.java

示例6: expandSRL

import com.carrotsearch.hppc.ObjectIntOpenHashMap; //导入方法依赖的package包/类
public String[][] expandSRL(DEPTree tree)
{
	ObjectIntOpenHashMap<DEPNode> map = new ObjectIntOpenHashMap<DEPNode>();
	int i = 0, predId = 0, size = tree.size();
	DEPNode pred, arg;
	String label;
	
	while ((pred = tree.getNextPredicate(predId)) != null)
	{
		map.put(pred, i++);
		predId = pred.id;
	}
	
	if (map.isEmpty())	return null;

	String[][] spans = new String[size][];
	int len = map.size();
	
	for (i=1; i<size; i++)
	{
		spans[i] = new String[len];
		Arrays.fill(spans[i], AbstractColumnReader.BLANK_COLUMN);
	}
	
	for (i=1; i<size; i++)
	{
		arg = tree.get(i);
		
		for (DEPArc arc : arg.getSHeads())
		{
			pred = arc.getNode();
			if (!map.containsKey(pred))	continue;
			
			predId = map.get(pred);
			label  = arc.getLabel();
			
			for (int spanId : getSpan(pred, arg))
				spans[spanId][predId] = label;
		}
	}
	
	return spans;
}
 
开发者ID:clearnlp,项目名称:clearnlp,代码行数:44,代码来源:SRLExpand.java


注:本文中的com.carrotsearch.hppc.ObjectIntOpenHashMap.size方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。