⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testhashedsparsevector.java

📁 这是一个matlab的java实现。里面有许多内容。请大家慢慢捉摸。
💻 JAVA
字号:
/* Copyright (C) 2002 Univ. of Massachusetts Amherst, Computer Science Dept.   This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).   http://www.cs.umass.edu/~mccallum/mallet   This software is provided under the terms of the Common Public License,   version 1.0, as published by http://www.opensource.org.  For further   information, see the file `LICENSE' included with this distribution. *//** 		@author Andrew McCallum <a href="mailto:mccallum@cs.umass.edu">mccallum@cs.umass.edu</a>*/package edu.umass.cs.mallet.base.types.tests;import edu.umass.cs.mallet.base.types.HashedSparseVector;import junit.framework.*;import edu.umass.cs.mallet.base.types.DenseVector;public class TestHashedSparseVector extends TestCase{	public TestHashedSparseVector (String name) {		super (name);	}		double[] dbl1 = new double[] {1, 2, 3, 4, 5};	double[] dbl2 = new double[] {1, 1.5, 2, 1, 1};	double[] dbl3 = new double[] { 2.0, 2.5, 3.0, 4.7, 3.5,																 3.6, 0,   0,   0,   0,																 0,   0,   0,   0,   0,																 0, };	int[] idxs = new int[] {3, 5, 7, 13, 15};	HashedSparseVector s1 = new HashedSparseVector (idxs, dbl1, dbl1.length, dbl1.length,																			true, true, true);	HashedSparseVector s2 = new HashedSparseVector (idxs, dbl2, dbl2.length, dbl2.length,																			true, true, true);	DenseVector d1 = new DenseVector (dbl3, true);	private void checkAnswer (HashedSparseVector actual, double[] ans)	{		assertEquals ("Wrong number of locations:",									ans.length, actual.numLocations());		for (int i = 0; i < actual.numLocations(); i++) {	    assertEquals ("Value incorrect at location "+i+": ",										ans[i], actual.valueAtLocation (i) , 0.0);		}	}		public void testPlusEquals ()	{		HashedSparseVector s = (HashedSparseVector) s1.cloneMatrix ();		s.plusEqualsSparse (s2, 2.0);		checkAnswer (s, new double[] { 3, 5, 7, 6, 7 }); 		HashedSparseVector s2p = new HashedSparseVector											 (new int[] { 13 },												new double[] { 0.8 });		s.plusEqualsSparse (s2p, 1.0);		checkAnswer (s, new double[] { 3, 5, 7, 6.8, 7 }); 		HashedSparseVector s3p = new HashedSparseVector											 (new int[] { 14 },												new double[] { 0.8 });		s.plusEqualsSparse (s3p, 1.0);		checkAnswer (s, new double[] { 3, 5, 7, 6.8, 7 }); 		// verify s unchanged		HashedSparseVector s4 = new HashedSparseVector											(new int[] { 7, 14, 15 },											 new double[] { 0.2, 0.8, 1.2 });		s.plusEqualsSparse (s4, 1.0);		checkAnswer (s, new double[] { 3, 5, 7.2, 6.8, 8.2 });			HashedSparseVector s5 = new HashedSparseVector (new int[] { 7 }, new double[] { 0.2 });		s5.plusEqualsSparse (s1);		for (int i = 0; i < s5.numLocations(); i++) {	    assertEquals (7, s5.indexAtLocation (i));	    assertEquals (3.2, s5.valueAtLocation (i), 0.0);		}		HashedSparseVector s6 = new HashedSparseVector (new int[] { 7 }, new double[] { 0.2 });		s6.plusEqualsSparse (s1, 3.5);		for (int i = 0; i < s6.numLocations(); i++) {	    assertEquals (7, s6.indexAtLocation (i));	    assertEquals (10.7, s6.valueAtLocation (i), 0.0);		}	}	public void testDotProduct () {		HashedSparseVector t1 = new HashedSparseVector (new int[] { 7 }, new double[] { 0.2 });		assertEquals (0.6, t1.dotProduct (s1), 0.00001);		assertEquals (0.6, s1.dotProduct (t1), 0.00001);				assertEquals (19.0, s1.dotProduct (s2), 0.00001);		assertEquals (19.0, s2.dotProduct (s1), 0.00001);		assertEquals (11.9, s1.dotProduct (d1), 0.00001);		assertEquals (10.1, s2.dotProduct (d1), 0.00001);	}	public void testIncrementValue ()	{		HashedSparseVector s = (HashedSparseVector) s1.cloneMatrix ();		s.incrementValue (5, 0.75);		double[] ans = new double[] {1, 2.75, 3, 4, 5};		for (int i = 0; i < s.numLocations(); i++) {	    assertTrue (s.valueAtLocation (i) == ans[i]);		}	}		public void testSetValue ()	{		HashedSparseVector s = (HashedSparseVector) s1.cloneMatrix ();		s.setValue (5, 0.3);		double[] ans = new double[] {1, 0.3, 3, 4, 5};		for (int i = 0; i < s.numLocations(); i++) {	    assertTrue (s.valueAtLocation (i) == ans[i]);		}	}	private static int[] idx2 = { 3, 7, 12, 15, 18 };	public void testBinaryVector ()	{		HashedSparseVector binary1 = new HashedSparseVector (idxs, null, idxs.length, idxs.length,																						 false, false, false);		HashedSparseVector binary2 = new HashedSparseVector (idx2, null, idx2.length, idx2.length,																						false, false, false);		assertEquals (3, binary1.dotProduct (binary2), 0.0001);		assertEquals (3, binary2.dotProduct (binary1), 0.0001);		assertEquals (15.0, binary1.dotProduct (s1), 0.0001);		assertEquals (15.0, s1.dotProduct (binary1), 0.0001);		assertEquals (9.0, binary2.dotProduct (s1), 0.0001);		assertEquals (9.0, s1.dotProduct (binary2), 0.0001);		HashedSparseVector dblVec = (HashedSparseVector) s1.cloneMatrix ();		dblVec.plusEqualsSparse (binary1);		checkAnswer (dblVec, new double[] { 2, 3, 4, 5, 6 });		HashedSparseVector dblVec2 = (HashedSparseVector) s1.cloneMatrix ();		dblVec2.plusEqualsSparse (binary2);		checkAnswer (dblVec2, new double[] { 2, 2, 4, 4, 6 });	}	public void testCloneMatrixZeroed ()	{		HashedSparseVector s = (HashedSparseVector) s1.cloneMatrixZeroed ();		for (int i = 0; i < s.numLocations(); i++) {	    assertTrue (s.valueAtLocation (i) == 0.0);	    assertTrue (s.indexAtLocation (i) == idxs [i]);		}	}	public static Test suite ()	{		return new TestSuite (TestHashedSparseVector.class);	}	protected void setUp ()	{	}	public static void main (String[] args)	{		junit.textui.TestRunner.run (suite());	}	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -