You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set<String> set = new HashSet<String>();
Set<Map.Entry<String, Integer>> entries = featureMap.entrySet();
for (Map.Entry<String, Integer> m : entries) {
set.add(m.getKey());
}
注意事项
请确认下列注意事项:
版本号
当前最新版本号是:
我使用的版本是:最新版
我的问题
感知机中使用可变DAT加载特征集合,加载large/cws.bin,在调试过程中发现
但是通过
排除重复后set.size() == 8021206 少掉了33个key。
比如 "\u0001/\u00014" 这个key,
通过featureMap.idOf("\u0001/\u00014") 可以返回id是8
但是featureMap.entrySet()中并包括这个id=8的项。
也就是id=8并没有被恢复出来。
The text was updated successfully, but these errors were encountered: