Skip to content

Commit 9e74f33

Browse files
author
xuyingjie007
committed
0 parents  commit 9e74f33

18 files changed

+1572
-0
lines changed

.classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>RLSI</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.jdt.core.javanature</nature>
16+
</natures>
17+
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#Mon Dec 24 21:24:40 CST 2012
2+
eclipse.preferences.version=1
3+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
5+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
6+
org.eclipse.jdt.core.compiler.compliance=1.6
7+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
8+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
9+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
10+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
11+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
12+
org.eclipse.jdt.core.compiler.source=1.6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/****************************************************************************************
2+
*Project: Regularized Latent Semantic Indexing 1.0
3+
****************************************************************************************
4+
*(C) Copyright 2013 Laboratory of Intelligent Information Processing, Nankai University
5+
* All Rights Reserved.
6+
*Authors: Zhicheng He, Yingjie Xu, Jun Xu, MaoQiang xie, Yalou Huang
7+
*****************************************************************************************/
8+
package nkiip.rlsi.basicStruct;
9+
10+
public class DocID_TFIDF {
11+
private int DocID;
12+
private float TFIDF;
13+
14+
public int getDocID() {
15+
return DocID;
16+
}
17+
18+
public void setDocID(int docID) {
19+
DocID = docID;
20+
}
21+
22+
public float getTFIDF() {
23+
return TFIDF;
24+
}
25+
26+
public void setTFIDF(float tFIDF) {
27+
TFIDF = tFIDF;
28+
}
29+
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/****************************************************************************************
2+
*Project: Regularized Latent Semantic Indexing 1.0
3+
****************************************************************************************
4+
*(C) Copyright 2013 Laboratory of Intelligent Information Processing, Nankai University
5+
* All Rights Reserved.
6+
*Authors: Zhicheng He, Yingjie Xu, Jun Xu, MaoQiang xie, Yalou Huang
7+
*****************************************************************************************/
8+
9+
package nkiip.rlsi.basicStruct;
10+
public class KeyValuePair {
11+
12+
public Integer key;
13+
public Float value;
14+
15+
public KeyValuePair(Integer k, Float v) {
16+
key = k;
17+
value = v;
18+
};
19+
}

0 commit comments

Comments
 (0)