<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Search Engines Architecture Week 2</title>
	<atom:link href="http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/feed/" rel="self" type="application/rss+xml" />
	<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/</link>
	<description>News, Papers, and Theses on Information Retrieval, Data Mining, and Search Engine Technologies.</description>
	<pubDate>Fri, 25 Jul 2008 15:30:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>By: E. Garcia</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-571</link>
		<dc:creator>E. Garcia</dc:creator>
		<pubDate>Fri, 28 Mar 2008 12:26:03 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-571</guid>
		<description>Hi, Gerardo;

Double check the naming conventions. Schlen and Smith also use different naming conventions. We can discuss it tomorrow in class.

Cheers</description>
		<content:encoded><![CDATA[<p>Hi, Gerardo;</p>
<p>Double check the naming conventions. Schlen and Smith also use different naming conventions. We can discuss it tomorrow in class.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzernieves</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-570</link>
		<dc:creator>panzernieves</dc:creator>
		<pubDate>Fri, 28 Mar 2008 05:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-570</guid>
		<description>Hi,

In order to test the pca1 program given in the papers, I advice you to use the example given in PCA and SPCA Tutorial by Dr. Garcia. 

In order to obtain the same results than in the tutorial type:

[signals, PC, V] = pca1(data);  


where 

1) data is the transpose of X (first matrix in tutorial, where columns are ordered Weight, Height, Age) 
2) PC is equivalent to V in the tutorial,
3) V is the diagonal elements of matrix S in the tutorial.

Not sure what signals really mean but sure it aint Step 4's YV!!!
Can anybody share any light on this matter???

Cheers!!!

G. Nieves</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>In order to test the pca1 program given in the papers, I advice you to use the example given in PCA and SPCA Tutorial by Dr. Garcia. </p>
<p>In order to obtain the same results than in the tutorial type:</p>
<p>[signals, PC, V] = pca1(data);  </p>
<p>where </p>
<p>1) data is the transpose of X (first matrix in tutorial, where columns are ordered Weight, Height, Age)<br />
2) PC is equivalent to V in the tutorial,<br />
3) V is the diagonal elements of matrix S in the tutorial.</p>
<p>Not sure what signals really mean but sure it aint Step 4&#8217;s YV!!!<br />
Can anybody share any light on this matter???</p>
<p>Cheers!!!</p>
<p>G. Nieves</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzernieves</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-567</link>
		<dc:creator>panzernieves</dc:creator>
		<pubDate>Wed, 26 Mar 2008 19:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-567</guid>
		<description>Correction and more suggestions:

Spectrum := set of all eigenvalues of a given matrix.

Matlab:
[PC, V] = eig(covariance);

Scilab:
[PC,V] = spec(covariance);

In order to use an user-built function you need to load the function first, once the function is written, type in Scilab environment:

getf("C:\...whatever path...\cov.sce");

In this case I was trying to load my function cov.

Once loaded simply type:

&#62;&#62;[c] = cov(A);

PS: If there is an error in the code, fix it and save and load the function again!!!

Cheer!!!

G. Nieves</description>
		<content:encoded><![CDATA[<p>Correction and more suggestions:</p>
<p>Spectrum := set of all eigenvalues of a given matrix.</p>
<p>Matlab:<br />
[PC, V] = eig(covariance);</p>
<p>Scilab:<br />
[PC,V] = spec(covariance);</p>
<p>In order to use an user-built function you need to load the function first, once the function is written, type in Scilab environment:</p>
<p>getf(&#8221;C:\&#8230;whatever path&#8230;\cov.sce&#8221;);</p>
<p>In this case I was trying to load my function cov.</p>
<p>Once loaded simply type:</p>
<p>&gt;&gt;[c] = cov(A);</p>
<p>PS: If there is an error in the code, fix it and save and load the function again!!!</p>
<p>Cheer!!!</p>
<p>G. Nieves</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzernieves</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-566</link>
		<dc:creator>panzernieves</dc:creator>
		<pubDate>Wed, 26 Mar 2008 12:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-566</guid>
		<description>Hi,

Still having problems with:

1)  [PC, V] = eig(covariance) usins scilab, well I found a possible solution for this:

"The Spectrum of a Matrix is the set of all eigenvectors of a matrix"

That is why I suggest you use 

                 [PC, V] = spec(A); 

instead.  If youre using scilab, this function yields the same results (mathematically speaking, that is) than [PC, V] = eig(covariance)!!!

For more information just type help spec in the scilab environment.

2) If you need to express your results in with two decimals, just write format bank in matlab or format 5 in scilab (thanks A. Paris for this one).

3) All functions need to end with endfunction so be careful with the code, Im still working on this. 

More info? Just keep on blogging (is that even a word/verb?).

Cheers!!!

G.Nieves</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Still having problems with:</p>
<p>1)  [PC, V] = eig(covariance) usins scilab, well I found a possible solution for this:</p>
<p>&#8220;The Spectrum of a Matrix is the set of all eigenvectors of a matrix&#8221;</p>
<p>That is why I suggest you use </p>
<p>                 [PC, V] = spec(A); </p>
<p>instead.  If youre using scilab, this function yields the same results (mathematically speaking, that is) than [PC, V] = eig(covariance)!!!</p>
<p>For more information just type help spec in the scilab environment.</p>
<p>2) If you need to express your results in with two decimals, just write format bank in matlab or format 5 in scilab (thanks A. Paris for this one).</p>
<p>3) All functions need to end with endfunction so be careful with the code, Im still working on this. </p>
<p>More info? Just keep on blogging (is that even a word/verb?).</p>
<p>Cheers!!!</p>
<p>G.Nieves</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzernieves</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-564</link>
		<dc:creator>panzernieves</dc:creator>
		<pubDate>Tue, 25 Mar 2008 03:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-564</guid>
		<description>Hi,

I did Exercise 4 using the provided codes.  I copy and paste them in Matlab and had to do minor corrections to the code in order to use them.  I didnt use Scilab for this problem but I will try them tomorrow on Scilab and do corrections if necessary and tell you whatever I find out.

Cheers!!!

G. Nieves</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I did Exercise 4 using the provided codes.  I copy and paste them in Matlab and had to do minor corrections to the code in order to use them.  I didnt use Scilab for this problem but I will try them tomorrow on Scilab and do corrections if necessary and tell you whatever I find out.</p>
<p>Cheers!!!</p>
<p>G. Nieves</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: E. Garcia</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-563</link>
		<dc:creator>E. Garcia</dc:creator>
		<pubDate>Tue, 25 Mar 2008 00:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-563</guid>
		<description>Hi, Luis:

It is easier if you can provide EXCEL files and reference these in the report as doc-1.xls, doc-2.xls, etc. Place all files, docs, etc in a single folder and zip it. Provide also hard copy of the report.</description>
		<content:encoded><![CDATA[<p>Hi, Luis:</p>
<p>It is easier if you can provide EXCEL files and reference these in the report as doc-1.xls, doc-2.xls, etc. Place all files, docs, etc in a single folder and zip it. Provide also hard copy of the report.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luisjaniel</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-562</link>
		<dc:creator>luisjaniel</dc:creator>
		<pubDate>Mon, 24 Mar 2008 22:13:19 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-562</guid>
		<description>Saludos Dr. García,

Le escribo para preguntar si el todo el Lab hay que pasarlo usando el template que usted envió incluyendo los que expecifican EXCEL.

Gracias.</description>
		<content:encoded><![CDATA[<p>Saludos Dr. García,</p>
<p>Le escribo para preguntar si el todo el Lab hay que pasarlo usando el template que usted envió incluyendo los que expecifican EXCEL.</p>
<p>Gracias.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ageigel</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-560</link>
		<dc:creator>ageigel</dc:creator>
		<pubDate>Thu, 20 Mar 2008 21:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-560</guid>
		<description>The following is a list of things I have found so far in the Scilab exercise, which can be remedied:

* There are extra ’ symbols inserted in the functions that generate syntax errors

* M-file style comments % convention give errors, I had to substitute with //
 
* All functions must end with endfunction. I had to add these to the code.

* ASCII to number function in Scilab does not exist. The only alternative I found is scanf which in c/c++ can cause lots of problems with overflows.

* Scilex gui is unstable and linking functions to TCL libraries gives errors at compilation time.



These are other errors that I have gotten so far, and I have not been able to solve. Does anybody have a recommendation? 

* On Shlens code: the repmat substitute, ones command found in http://www.scilab.org/product/dic-mat-sci/M2SCI.htm, produces errors in matrix multiplication consistency.

* In Lindsey's program the line: finaleigs = eigenvectors(:,1:dimensions); is giving errors. I looked up the function eigenvectors in scilab, and it does not appear in the site, nor in her code.</description>
		<content:encoded><![CDATA[<p>The following is a list of things I have found so far in the Scilab exercise, which can be remedied:</p>
<p>* There are extra ’ symbols inserted in the functions that generate syntax errors</p>
<p>* M-file style comments % convention give errors, I had to substitute with //</p>
<p>* All functions must end with endfunction. I had to add these to the code.</p>
<p>* ASCII to number function in Scilab does not exist. The only alternative I found is scanf which in c/c++ can cause lots of problems with overflows.</p>
<p>* Scilex gui is unstable and linking functions to TCL libraries gives errors at compilation time.</p>
<p>These are other errors that I have gotten so far, and I have not been able to solve. Does anybody have a recommendation? </p>
<p>* On Shlens code: the repmat substitute, ones command found in <a href="http://www.scilab.org/product/dic-mat-sci/M2SCI.htm" rel="nofollow">http://www.scilab.org/product/dic-mat-sci/M2SCI.htm</a>, produces errors in matrix multiplication consistency.</p>
<p>* In Lindsey&#8217;s program the line: finaleigs = eigenvectors(:,1:dimensions); is giving errors. I looked up the function eigenvectors in scilab, and it does not appear in the site, nor in her code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: E. Garcia</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-558</link>
		<dc:creator>E. Garcia</dc:creator>
		<pubDate>Mon, 17 Mar 2008 13:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-558</guid>
		<description>Dear Students:

In Lab 1 Part 4, you need to provide a modified SciLab code of PCA. You also need to reproduce the example given in Lindsay Smith's tutorial. Use EXCEL and any SVD calculator. 

Be aware that the accepted formula for covariance uses n - 1 in the denominator, not just n. If your version of EXCEL uses n, you need to correct results by multiplying times n/(n-1).

I am putting together a tutorial on PCA to help you.

Cheers</description>
		<content:encoded><![CDATA[<p>Dear Students:</p>
<p>In Lab 1 Part 4, you need to provide a modified SciLab code of PCA. You also need to reproduce the example given in Lindsay Smith&#8217;s tutorial. Use EXCEL and any SVD calculator. </p>
<p>Be aware that the accepted formula for covariance uses n - 1 in the denominator, not just n. If your version of EXCEL uses n, you need to correct results by multiplying times n/(n-1).</p>
<p>I am putting together a tutorial on PCA to help you.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: E. Garcia</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-557</link>
		<dc:creator>E. Garcia</dc:creator>
		<pubDate>Mon, 17 Mar 2008 12:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-557</guid>
		<description>Hi, Nieves:

Thanks. 

Indeed we don't have classes that week, according to the academic calendar over at http://www.pupr.edu/academiccalendar/ac-wi05.pdf</description>
		<content:encoded><![CDATA[<p>Hi, Nieves:</p>
<p>Thanks. </p>
<p>Indeed we don&#8217;t have classes that week, according to the academic calendar over at <a href="http://www.pupr.edu/academiccalendar/ac-wi05.pdf" rel="nofollow">http://www.pupr.edu/academiccalendar/ac-wi05.pdf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzernieves</title>
		<link>http://irthoughts.wordpress.com/2008/03/14/search-engines-architecture-week/#comment-556</link>
		<dc:creator>panzernieves</dc:creator>
		<pubDate>Mon, 17 Mar 2008 05:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://irthoughts.wordpress.com/?p=183#comment-556</guid>
		<description>Prof. :

Verifique el calendario academico y segun dice en el, este sabado no hay clases, solo para notificarlo a usted y al resto del grupo. Cheers!!!

G. Nieves</description>
		<content:encoded><![CDATA[<p>Prof. :</p>
<p>Verifique el calendario academico y segun dice en el, este sabado no hay clases, solo para notificarlo a usted y al resto del grupo. Cheers!!!</p>
<p>G. Nieves</p>
]]></content:encoded>
	</item>
</channel>
</rss>
