<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>weka &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/weka/</link>
	<description>Feed of posts on WordPress.com tagged "weka"</description>
	<pubDate>Sun, 06 Dec 2009 09:08:01 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[WEKA Betriebsrats Wahlmanager Paket]]></title>
<link>http://frankglencairn.wordpress.com/2009/11/20/weka-betriebsrats-wahlmanager/</link>
<pubDate>Fri, 20 Nov 2009 09:02:43 +0000</pubDate>
<dc:creator>kehraus</dc:creator>
<guid>http://frankglencairn.wordpress.com/2009/11/20/weka-betriebsrats-wahlmanager/</guid>
<description><![CDATA[This is a little commercial I shot for WEKA. It´s a very specific software for shop council voting ]]></description>
<content:encoded><![CDATA[This is a little commercial I shot for WEKA. It´s a very specific software for shop council voting ]]></content:encoded>
</item>
<item>
<title><![CDATA[Mining data streams, the web, and the climate]]></title>
<link>http://followthedata.wordpress.com/2009/11/09/mining-data-streams-the-web-and-the-climate/</link>
<pubDate>Mon, 09 Nov 2009 16:32:48 +0000</pubDate>
<dc:creator>Mikael Huss</dc:creator>
<guid>http://followthedata.wordpress.com/2009/11/09/mining-data-streams-the-web-and-the-climate/</guid>
<description><![CDATA[I recently came across MOA (Massive Online Analysis), an environment for what its developers call ma]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I recently came across <a href="http://www.cs.waikato.ac.nz/~abifet/MOA/">MOA</a> (Massive Online Analysis), an environment for what its developers call massive data mining, or <em>data stream mining</em>. This New Zealand-based project is related to <a href="http://www.cs.waikato.ac.nz/ml/weka/">Weka</a>, a Java-based framework for machine learning which I&#8217;ve used quite a bit over the years. Data stream mining differs from plain old data mining in that the data is assumed to arrive quickly and continuously, as in a stream, and in an unpredictable order. Therefore the full data set will typically be many times larger than your computer&#8217;s memory (which already rules out some commonly used algorithms), and each example can only be briefly examined once, after which it is discarded. Therefore the statistical model has to be updated incrementally, and often must be ready to be applied at any point between training examples.</p>
<p>I also came across a press release describing version 2.0 of <a href="http://www.knowledgeminer.com/">KnowledgeMiner for Excel</a>, a data mining software apparently used by customers like Pfizer, NASA and Boeing, and which is based on <a href="http://www.gmdh.net/">GMDH (Group Method of Data Handling)</a>, a paradigm I hadn&#8217;t heard about before. I failed to install KnowledgeMiner for Excel for my Mac due to some obscure install error, but from what I gather, the GMDH framework involves a kind of automatic model selection, making it easier to use for non-experts in data mining. (Of course I haven&#8217;t tried it, so it&#8217;s hard to evaluate the claim.) The example data set provided with the software package has to do with climate data and modeling, so it should be fun to try as soon as I get it working:</p>
<blockquote><p>The new KnowledgeMiner is now capable of high-dimensional modeling and prediction of climate and has an included example using air and sea surface temperature data. This is a first for a data-mining software package: to offer anyone the ability to see for themselves that global temperatures are rising steadily, using publicly available data. The biggest surprise is seeing that the changes are greatest and accelerating in the northern latitudes. By using data from the past, KnowledgeMiner (yX) can show predictions for future years. Go to <a href="http://www.knowledgeminer.com/cc/" target="_blank">this link</a> to see the climate change data displayed graphically in a slideshow through the year 2020:</p>
</blockquote>
<p>There&#8217;s also an interesting new toolkit for web mining from <a href="http://bixolabs.com/">BixoLabs</a>. They&#8217;ve built what they call an elastic web mining platform in Amazon&#8217;s Elastic Compute Cloud (on top of Hadoop, Cascading and a web mining framework called Bixo, for those of you who care). The whole thing is pre-configured and scalable, and from the tutorials on the site, it seems pretty easy to set it up to crawl the web to your heart&#8217;s content.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using WEKA API in Matlab.]]></title>
<link>http://eaglek1.wordpress.com/2009/10/15/using-weka-api-in-matlab/</link>
<pubDate>Thu, 15 Oct 2009 14:24:28 +0000</pubDate>
<dc:creator>eaglek1</dc:creator>
<guid>http://eaglek1.wordpress.com/2009/10/15/using-weka-api-in-matlab/</guid>
<description><![CDATA[The WEKA (http://www.cs.waikato.ac.nz/ml/weka/) software is very powerful data mining tool that allo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The WEKA (http://www.cs.waikato.ac.nz/ml/weka/) software is very powerful data mining tool that allows you to test your datasets with a broad set of classifiers, and cluster functions. One nice feature is that you can use their JAVA API to develop and incorporate in your own applications and avoiding to write implementations of SVM, K-NN,&#8230; algorithms.</p>
<p>Another tool that i used a lot was Matlab &#8211; MAthWorks, which in the last version (2008) allows us to write code in a object oriented way. And because is built on top of a Java Virtual Machine, it now allows to use java objects on their .m files.</p>
<p>The code snippets that i will show is to use the WEKA library on Matlab files, but it can be used to link any kind of java library.</p>
<p>file dummy.m:</p>
<pre class="brush: java;">
//include jar libraries to matlab environment
javaaddpath('/opt/weka-3-5-7/weka.jar');
javaaddpath('/opt/weka/libsvm.jar');
//imports java like
import weka.classifiers.*;
import weka.classifiers.Classifier.*;
import weka.classifiers.bayes.BayesNet.*;
import weka.classifiers.Evaluation.*;
//Arff files
ARFFtrainfile = &#34;/path/to/arfftrainfile.arff&#34;;
ARFFtestfile = &#34;/path/to/arfftestfile.arff&#34;;
//Settings for the classifier
v(1) = java.lang.String('-t');
v(2) = java.lang.String(ARFFtrainfile);
v(3) = java.lang.String('-T');
v(4) = java.lang.String(ARFFtestfile);
v(5) = java.lang.String('-S 0 -K 2 -D 3 -G 0.0010 -R 0.0 -N 0.5 -M 40.0 -C 10.0 -E 0.0010 -P 0.1');
//concatenate the settings in a string
prm = cat(1,v(1:end));
//create classifier instance, and perform the evaluation
classifier = javaObject('weka.classifiers.functions.LibSVM');
weka.classifiers.Evaluation.evaluateModel(classifier,prm)
//open trainset&#60;span style=&#34;background-color: #ffffff;&#34;&#62; &#60;/span&#62;
reader = javaObject('java.io.FileReader', ARFFTrainfile);
dataset = javaObject('weka.core.Instances', reader);
dataset.setClassIndex(dataset.numAttributes() - 1);
//build classifier model
classifier.buildClassifier(dataset);
...
while (true) {
instance = javaObject('weka.core.Instance', length(attributes_Dataset));
predicted = classifier.classifyInstance(instance);
//predict the class from the instance
class = dataset.attribute(dataset.numAttributes() -1).value(predicted))
}
...
</pre>
<p>In the code above the part inside the while is for predict the class of each instance; each instance can be any vector but need to have the same number of attributes as the ones in the dataset , in the arff files.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tramping at Queen Charlotte Sound]]></title>
<link>http://eadyadventures.com/2009/09/16/tramping-at-queen-charlotte-sound/</link>
<pubDate>Wed, 16 Sep 2009 21:08:34 +0000</pubDate>
<dc:creator>Dave</dc:creator>
<guid>http://eadyadventures.com/2009/09/16/tramping-at-queen-charlotte-sound/</guid>
<description><![CDATA[The last couple of days we&#8217;ve been tramping New Zealand style.  Although you might draw simila]]></description>
<content:encoded><![CDATA[<div class='snap_preview'>
<p>The last couple of days we&#8217;ve been tramping New Zealand style.  Although you might draw similarities between our travelling and life on the streets (living out a bag, no fixed abode, smelling a lot, drinking to keep warm at nights) it is not in fact that which we&#8217;ve been doing.  Translated &#8216;tramping&#8217; means &#8216;hiking&#8217;, or it does more or less.</p>
<p>We&#8217;ve hiking around the Queen Charlotte track, which is in the Marlborough Sounds area at the top of the South Island.  The first day we drove round the most alpine style road we&#8217;ve had to to date and then walked along the end of the track for about three hours &#8211; stopping at beaches and the odd lookout.  The next day we did a day walk at the opposite end of the sound by taking a small water taxi to the end of the walk, walking for about five hours then being picked up at a different jetty to be taken back to Picton town.  All of this was really cool, with lovely bush and coast.  The water is really clear and inviting, especially knowing it doesn&#8217;t have the usual Australian killer creatures in it!</p>
<p>We did see a little wildlife in the shape of seals, penguins and a weka (<a href="http://labarker.com/NZbirds.html#weka" target="_blank">http://labarker.com/NZbirds.html#weka</a>).</p>
<p>Later yesterday evening we took the InterIslander ferry across the Cook Strait to the North Island.  All was fairly normal apart from that the military special ops were to perform their annual &#8216;fast rope&#8217; training half way through the trip!  Basically we were told four helicopters were going to appear and land about a dozen or so soldiers on to the boat by quickly dropping out of the hovering helicopter using a rope &#8211; just like in the movies!  It was a totalling amazing sight.  We could hear them coming, but couldn&#8217;t see them.  They had no lights on, in the pitch black, and were using night vision goggles.  Then as soon as they arrived men started jumping (you could see them as they had glow sticks on their arms and legs) on to the deck.  Really made the trip that bit more exciting!</p>
<p>Anyway, off to Wellington the capital city this morning&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tagshadow: Jama, Weka and Scatter Plots]]></title>
<link>http://mentatjack.com/2009/09/11/tagshadow-jama-weka-and-scatter-plots/</link>
<pubDate>Fri, 11 Sep 2009 16:52:43 +0000</pubDate>
<dc:creator>mentatjack</dc:creator>
<guid>http://mentatjack.com/2009/09/11/tagshadow-jama-weka-and-scatter-plots/</guid>
<description><![CDATA[There&#8217;s nothing quite like the double edged blade of progress for producing equal parts specta]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There&#8217;s nothing quite like the double edged blade of progress for producing equal parts spectacular failure and insight.  I linked to <a href="http://tagshadow.com/amazon/science-fiction-vs-vampires.html">some of my experiments</a> displaying scatter plot book recommendations.  Following feedback I&#8217;ve iterated over various displays with less and less &#8220;graph&#8221; feel.   You&#8217;ll get a look at that when my first dimension reductions see the light.</p>
<p>On that front I&#8217;ve made some progress with <a href="http://math.nist.gov/javanumerics/jama/">Jama</a>, which allows me to represent and manipulate matrices in Java.  I ran my <a href="http://mentatjack.com/2009/07/18/principal-component-analysis-the-lovecraft-experiment-part-1/">lovecraft example data</a> through the paces of SVD, QR, LU, and such, but the real test will be when I try and manipulate the significantly larger amazon Tag matrix.</p>
<p><a href="http://www.cs.waikato.ac.nz/ml/weka/"><img src="http://mentatjack.wordpress.com/files/2009/09/weka-software-logo.png" alt="Weka (software) logo" title="Weka (software) logo" width="198" height="104" class="alignright size-full wp-image-1381" /></a>
<p>I DID use the larger data set with <a href="http://www.cs.waikato.ac.nz/ml/weka/">Weka</a>, a VERY neat tool that exposes a TON of interesting ways to manipulate large sets of data.  This is where I had the largest insights and failures.  The failures involved quickly discovering the constraints of my memory as I repeatedly crashed the application with too much data.  When I found a subset of the data (and an appropriate heap size) it could handle I actually got some of my first plots of Principal Component data.  On one hand I&#8217;m giddy and on another I realize that I still have a long way to go.  Weka&#8217;s Knowledge Flow functionality (complete with flashbacks to <a href="http://www.mathworks.com/">MatLab</a> in college) allows for some crazy fast prototyping and experimenting.</p>
<p>I&#8217;ve got earlier editions of <a href="http://www.amazon.com/gp/product/0521880688?ie=UTF8&#38;tag=mentatjack-20&#38;linkCode=as2&#38;camp=1789&#38;creative=390957&#38;creativeASIN=0521880688">Numerical Recipes: The Art of Scientific Computing </a> and <a href="http://www.amazon.com/gp/product/0120884070?ie=UTF8&#38;tag=mentatjack-20&#38;linkCode=as2&#38;camp=1789&#38;creative=390957&#38;creativeASIN=0120884070">Data Mining: Practical Machine Learning Tools and Techniques</a> on hold at the library, so it should be a fun weekend.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Blog start]]></title>
<link>http://planimeter.wordpress.com/2009/08/30/blog-start/</link>
<pubDate>Sun, 30 Aug 2009 10:06:42 +0000</pubDate>
<dc:creator>planimeter</dc:creator>
<guid>http://planimeter.wordpress.com/2009/08/30/blog-start/</guid>
<description><![CDATA[A new blog is started. God knows its number in the row. Anyhow, I hope that it can deliver solution(]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A new blog is started. God knows its number in the row. Anyhow, I hope that it can deliver solution(s) for my readers.<br />
Who I am? I&#8217;m originally a statistician. But I&#8217;ve recently been facing with web-based problems, tools and solutions. As I realised that only the prompt answers are adequate even in statistical services, I started to deal with on-line, web-based and one more characteristics, automated reporting.<br />
What did I find? A huge jungle, without specific solutions, where even the directions are questionable sometimes.<br />
I would like to introduce my efforts and solutions in this heroic struggle. The struggle with the statistical tools, like R, SAS, WINBUGS, WEKA, etc., the struggle with web-based environment like PHP, SQL, MYSQL, the struggle with the different CMS&#8217;s like WordPress, Textpattern, Typo3 and some connected topics like photo-editing and publishing, archiving, providing and improving security and so on.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[FDP Iserlohn: Westebbe tritt aus]]></title>
<link>http://iserlohner.wordpress.de/2009/08/06/fdp-iserlohn-westebbe-tritt-aus/</link>
<pubDate>Thu, 06 Aug 2009 21:09:22 +0000</pubDate>
<dc:creator>Iserlohner aka Nacky Luke</dc:creator>
<guid>http://iserlohner.wordpress.de/2009/08/06/fdp-iserlohn-westebbe-tritt-aus/</guid>
<description><![CDATA[Interessante Entwicklung in der WEKA-Affäre. Heute abend veröffentlicht die FDP Iserlohn auf ihrer H]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Interessante Entwicklung in der WEKA-Affäre. Heute abend veröffentlicht die FDP Iserlohn auf ihrer <a href="http://www.fdp-iserlohn.de/">Homepage</a> zwei Erklärungen. Eine von Westebbe, eine von Stenger und Köpke.</p>
<p>Danach tritt Westebbe mit sofortiger Wirkung aus der FDP aus und steht auch nicht für ein künftiges Ratsmandat bereit. Köpke/Stenger bedankt sich artig.</p>
<p>Damit wollen die Marktradikalen von der FDP den Schaden minimieren, der ihnen ansonsten aus der WEKA-Geschichte erwachsen könnte. Transparenter geht es ja wohl nicht.</p>
<p>Sicher: Westebbe ist erstmal weg. Das allerdings hatte er sich wohl zunächst nicht so vorgestellt, denn sonst hätte er ja gleich seine Ämter niederlegen können. Stattdessen wurde von &#8220;ruhen lassen&#8221; gesprochen. Vermutlich waren es die heutigen Razzien, die das Fass zum Überlaufen brachten. Gut für den Iserlohner Bürger!</p>
<p>Aber: Eines muss klar sein. Wie bei der Hydra ist es auch bei der FDP. Schlägst Du einen Kopf ab, wachsen zwei nach. Die FDP ist eben einfach und ganz nüchtern betrachtet ein Sammelbecken für die Radikalen. Die Radikalen, die glauben Markt ist alles. Der Trugschluss besteht dabei darin, dass rhetorisch stets davon ausgegangen wird, dass Markt gleichbedeutend mit Chancengleichheit ist.</p>
<p>Das stimmt aber nicht. Heutzutage ist Markt die Dominanz des Kapitals, ein neues Modell von Leibeigenschaft und Fürstentum. Und die FDP ist der Fürsten Lobby!</p>
<p>Wer also bei der FDP das Kreuzchen macht und nicht Unternehmer ist, sollte schnellstens ein EEG anfertigen lassen. Ich vermute einen Befund&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IT-Fachverlag: Kurzarbeit bei Weka ]]></title>
<link>http://freiemarktwortschaft.wordpress.com/2009/08/06/it-fachverlag-kurzarbeit-bei-weka/</link>
<pubDate>Thu, 06 Aug 2009 14:22:53 +0000</pubDate>
<dc:creator>freiemarktwortschaft</dc:creator>
<guid>http://freiemarktwortschaft.wordpress.com/2009/08/06/it-fachverlag-kurzarbeit-bei-weka/</guid>
<description><![CDATA[Der deutsch-amerikanische IT-Fachverlag CMP-Weka (&#8220;Computer Reseller News&#8221;, &#8220;Infor]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="teaser">Der deutsch-amerikanische IT-Fachverlag CMP-Weka (&#8220;Computer Reseller News&#8221;, &#8220;Information Week&#8221;) fährt seit dem 1. Juli Kurzarbeit. Das bestätigte der Verlag auf kress-Anfrage.</p>
<p class="articletext">Die Maßnahme laufe bis Ende Januar 2010, sagte CMP-Weka gegenüber dem Branchendienst. Betroffen seien alle Abteilungen. CMP-Weka reagiere auf die &#8220;allgemein schlechte Situation im Anzeigenmarkt&#8221;, äußert sich ein Verlagssprecher gegenüber kress zu den Hintergründen.</p>
<p>CMP-Weka ist ein Joint-Venture des amerikanischen UBM (United Business Media) mit der deutschen Unternehmensgruppe Weka.</p>
<p>via</p>
<p><a href="http://www.boersenblatt.net/332703/">IT-Fachverlag: Kurzarbeit bei Weka &#124; NEWS MEDIEN &#124; boersenblatt.net</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WEKA: Thomas Pütter tut fast alles für Herbert Goldmann]]></title>
<link>http://iserlohner.wordpress.de/2009/08/03/weka-thomas-putter-tut-fast-alles-fur-herbert-goldmann/</link>
<pubDate>Mon, 03 Aug 2009 10:01:48 +0000</pubDate>
<dc:creator>Iserlohner aka Nacky Luke</dc:creator>
<guid>http://iserlohner.wordpress.de/2009/08/03/weka-thomas-putter-tut-fast-alles-fur-herbert-goldmann/</guid>
<description><![CDATA[Wir erinnern uns: Damals kamen Gerüchte auf, Herbert Goldmann, Leiter einer der überflüssigsten Abte]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wir erinnern uns: <a href="http://iserlohner.wordpress.com/2008/09/26/altpapier-in-iserlohn-welche-rolle-spielt-die-umweltabteilung/">Damals kamen Gerüchte auf</a>, Herbert Goldmann, Leiter einer der überflüssigsten Abteilungen im Iserlohner Rathaus, nämlich der Umweltabteilung, sei ein Freund von IKZ-Möchtegernjournalist Thomas Pütter und umgekehrt. Jedenfalls versuchte Möchtegernjournalist Thomas Pütter dem Grünen-Hobbypolitiker Herbert Goldmann schon damals auf´s Pferd, das da hieß &#8220;Übernahme der Abfallentsorgung&#8221;, zu helfen. Es klappte nicht.</p>
<p>Wem nun noch Zweifel blieben, Thomas Pütter könnte wirklich irgendwie merkwürdig an der Reputation und Fortentwicklung des Umweltabteilungsleiters interessiert sein, kann nun aufatmen. Denn seit letzten Samstag kann es keinen Zweifel mehr geben. Möchtgernjournalist Thomas Pütter nutzt wiederum seine publizistischen Möglichkeiten, um Hobbypolitiker und Berufsabteilungsleiter Herbert Goldmann vor dem Zorn des Volkes zu schützen.</p>
<p>Wie nämlich bekannt wurde, hat die Umweltabteilung nach der größten Umweltkatastrophe auf Iserlohner Stadtgebiet, <a href="http://www.derwesten.de/nachrichten/staedte/iserlohn/2009/8/1/news-127876452/detail.html">dem Großbrand bei WEKA</a>, keinen, nicht einmal den kleinen Finger krumm gemacht. Rund zwei Wochen verharrte die Abteilung, die für sich reklamiert, in Fragen des Umweltschutzes die ausgewiesenen Experten vorzuhalten, in Lethargie und machte &#8230; NIX! Erst jüngst entsandte man den einen oder anderen Mitarbeiter an Infostände zur Aufklärung der Bevölkerung im Katastrophengebiet.</p>
<p>Natürlich gerieten der verantwortliche Bereichsleiter, Dr. Peter-Paul Ahrens, wie auch der Leiter der Umweltabteilung entsprechend in die Schusslinie der Kritik. Gar nicht doof versuchten sie sich zu exkulpieren, indem sie frech argumentierten, man habe sie schließlich &#8220;nicht hinzu gezogen&#8221;.</p>
<p>Man stelle sich folgendes vor: Zwei Männer überfallen eine Spielhalle. Polizisten stehen neben dem Eingang. Die Räuber rennen mit der Beute an den Polizisten vorbei und verschwinden. Die Spielhallenangestellte sieht die Polizisten und fragt aufgeregt: &#8220;Warum sind Sie denn nicht eingeschritten?&#8221; Antworten die Polizisten: &#8220;Naja. Sie haben uns schließlich nicht hinzu gezogen&#8230;&#8221;</p>
<p>Nicht nur angesichts des Beispiels wird wohl klar, dass diese Argumentation völliger Unsinnn ist. Denn gerade die Mannen des Herbert Goldmann sind bekannt dafür, sich stets und ständig in die Angelegenheiten anderer einzumischen. Das immer unter dem Deckmäntelchen der Umweltrelevanz des jeweiligen Themas, respektive unter Berufung auf die eigene Zuständigkeit. Nur im Falle von WEKA sieht man sich in der Funktion des unbeteiligten Vierten? Lachhaft. </p>
<p>Aber Möchtegernjournalist Thomas Pütter sieht das natürlich so nicht, setzt sich hin und schreibt einen langen Kommentar in sein IKZ-Blättchen. Wortreich regt er sich darüber auf, dass man die Umweltabteilung nicht beteiligt habe, dort hätte man sicherlich Experten gehabt, aber wenn man die nicht abfordere, dann könnten die natürlich auch nicht tätig werden. Mit anderen Worten: &#8220;Mein Kumpel Herbert, der konnte da gar nichts für. Der wollte ja, man hat ihn aber nicht gelassen. Doof sind nur die anderen.&#8221; Wer´s glaubt, wird vermutlich nicht einmal seelig&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dump MySQL table into CSV]]></title>
<link>http://geekygospel.wordpress.com/2009/07/21/dump-mysql-table-into-csv/</link>
<pubDate>Tue, 21 Jul 2009 05:31:56 +0000</pubDate>
<dc:creator>imdonatello</dc:creator>
<guid>http://geekygospel.wordpress.com/2009/07/21/dump-mysql-table-into-csv/</guid>
<description><![CDATA[I needed to dump MySQL tables into CSV for use with WEKA. A little google search helped. I found thi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I needed to dump MySQL tables into CSV for use with <a href="http://www.cs.waikato.ac.nz/~ml/weka/">WEKA</a>. A little google search helped. I found <a href="http://www.terminally-incoherent.com/blog/2006/07/20/dump-mysql-table-into-csv-file/">this</a>. I am copying the command here for my reference:</p>
<blockquote><p>SELECT * INTO OUTFILE &#8216;result.csv&#8217;<br />
FIELDS TERMINATED BY &#8216;,&#8217; OPTIONALLY ENCLOSED BY &#8216;&#8221;&#8216;<br />
LINES TERMINATED BY &#8216;\n&#8217;<br />
FROM my_table;</p></blockquote>
<p>Thank you, <a href="http://www.terminally-incoherent.com">Terminally Incoherent</a>! I love MySQL too!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Data Mining = Εξόρυξη πληροφοριών]]></title>
<link>http://gianniskatsampirhs.wordpress.com/2009/06/25/data-mining-%ce%b5%ce%be%cf%8c%cf%81%cf%85%ce%be%ce%b7-%cf%80%ce%bb%ce%b7%cf%81%ce%bf%cf%86%ce%bf%cf%81%ce%b9%cf%8e%ce%bd/</link>
<pubDate>Thu, 25 Jun 2009 13:45:37 +0000</pubDate>
<dc:creator>Γιάννης Κατσαμπίρης</dc:creator>
<guid>http://gianniskatsampirhs.wordpress.com/2009/06/25/data-mining-%ce%b5%ce%be%cf%8c%cf%81%cf%85%ce%be%ce%b7-%cf%80%ce%bb%ce%b7%cf%81%ce%bf%cf%86%ce%bf%cf%81%ce%b9%cf%8e%ce%bd/</guid>
<description><![CDATA[Πρόκειται για τη διαδικασία που ακολουθεί ένας στατιστικός ώστε να ανακαλύψει από ένα μεγάλο κομμάτι]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Πρόκειται για τη διαδικασία που ακολουθεί ένας στατιστικός ώστε να ανακαλύψει από ένα μεγάλο κομμάτι δεδομένων που έχει την πιο σημαντική πληροφορία, την οποία θα χρησιμοποιήσει αργότερα για τη στατιστική του ανάλυση.</p>
<p>Η διαδικασία της εξόρυξης πληροφοριών από δεδομένα έχει ως στόχο να απλουστεύσει τα δεδομένα ώστε να είναι πιο εύκολη η ανάλυσή τους, να αποκλείσει κάποιες μεταβλητές (ή χαρακτηριστικά, αλλιώς attributes) οι οποίες δεν προσφέρουν επιπλέον πληροφορία για το στατιστικό. Αυτός μπορεί να το καταφέρει αναλύοντας τη σχέση που έχουν οι μεταβλητές μεταξύ τους, η συσχέτιση δηλαδή, ακόμη και να μετασχηματίσει τα δεδομένα για το σκοπό αυτό.</p>
<p>Η διαδικασία της εξόρυξης δεδομένων αποτελεί το 70%-90% του χρόνου για το στατιστικό, ενώ η περαιτέρω στατιστική ανάλυση μόνο το 10%-30%.</p>
<p>Πριν λίγες μέρες ανακάλυψα ένα μάθημα μεταπτυχιακού επιπέδου που προσφέρεται από το Μετσόβιο Πολυτεχνείο το οποίο ασχολείται με την Εξόρυξη πληροφοριών. Υπάρχουν διαφάνειες με τις παρουσιάσεις καθώς και βιντεάκια με τις διαλέξεις. Είναι μία καλή ιδέα για έναν στατιστικό. Ρίξτε μία ματιά.</p>
<p>Το συγκεκριμένο μάθημα περιγράφει κι ένα χρήσιμο πρόγραμμα, open source εφαρμογή, το <strong>WEKA</strong>.</p>
<p>Πηγή &#8211; Χρήσιμοι σύνδεσμοι:<br />
1. <a href="http://dataminingntua.wordpress.com">Iστοσελίδα του μαθήματος</a><br />
2. <a href="http://mineknowledge.com">Υπηρεσία εξόρυξης δεδομένων</a><br />
3. <a href="http://www.cs.waikato.ac.nz/ml/weka">Ιστοσελίδα του weka</a><br />
4. <a href="http://www.ustream.tv/tziralis">Τα βίντεο του μαθήματος</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wekas and kakas on Stewart Island]]></title>
<link>http://naturalhistorynotes.wordpress.com/2009/05/22/wekas-and-kakas-on-stewart-island/</link>
<pubDate>Fri, 22 May 2009 19:13:00 +0000</pubDate>
<dc:creator>Jacoba Charles</dc:creator>
<guid>http://naturalhistorynotes.wordpress.com/2009/05/22/wekas-and-kakas-on-stewart-island/</guid>
<description><![CDATA[The dock where the ferry lands at Stewart Island faces a small half-moon bay full of fishing boats. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://1.bp.blogspot.com/_VymcqAZDv5c/Shb9NcXfTzI/AAAAAAAAAFk/VH7nSLdZSdw/s1600-h/IMG_0970.jpg"><img style="display:block;text-align:center;cursor:hand;width:320px;height:213px;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_VymcqAZDv5c/Shb9NcXfTzI/AAAAAAAAAFk/VH7nSLdZSdw/s320/IMG_0970.jpg" border="0" /></a><br />The dock where the ferry lands at Stewart Island faces a small half-moon bay full of fishing boats. Though the remote island off the southern tip of New Zealand is increasingly “gentrified” by tourists, it is still far from posh. A ramshackle grocery store, a single hotel/bar, and a top-notch fish and chips restaurant operating out of a modified travel trailer are the highlights of the tiny town of Oban. There are a handful of other attractions: one phone booth, an art gallery that is open for a few hours each day, and a bead-drenched hippie coffee shop offering very expensive internet. </p>
<p>But the main attraction to Stewart Island is the nature. More than three-quarters of the place has been designated as the Rakiura National Park. The endangered, ground-dwelling kiwi bird thrives here, as do many other native birds. Before successive waves of human inhabitants began to arrive, no mammals or predaceous reptiles lived anywhere in New Zealand. Many of the country’s native birds and reptiles – such as the prehistoric, lizardlike tuatara that can live to be over 100 years old – have been driven to the brink of extinction or beyond by a long list of pests featuring rats, cats, possums, mice and pigs. Stewart Island has largely been spared the invasion, by virtue of being so small and so remote. The winters here are harsh; the summer days are long. It is at roughly the same latitude as Seattle but is a microscopic landmass, buffeted by the massive weather patterns that accumulate over the open sea. </p>
<p><a href="http://2.bp.blogspot.com/_VymcqAZDv5c/Shb9ieFEQ5I/AAAAAAAAAFs/u07_hvcRRpw/s1600-h/IMG_1001.jpg"><img style="float:right;cursor:hand;width:320px;height:213px;margin:0 0 10px 10px;" src="http://2.bp.blogspot.com/_VymcqAZDv5c/Shb9ieFEQ5I/AAAAAAAAAFs/u07_hvcRRpw/s320/IMG_1001.jpg" border="0" /></a>My visit to the island was a lazy affair: six of us in a friend’s rustic hut ten minutes outside of town. We drank foliage-flavored water from a tank that funneled rain off the hut’s roof, and watched plump New Zealand pigeons rummage for berries in the bushes outside while muted parrots called kakas swooped overhead. One night I’m pretty sure I heard a kiwi, but we never saw one. During the days we strolled to nearby beaches, and one day hired a local with a little boat to take us over to the neighboring Ulva Island for the afternoon. One friend fished for snapper off the dock, and I got a sunburn while watching one of the kiwi’s un-endangered and unafraid cousins, a weka, try to sample both my beer and my chocolate.  </p>
<p>The majority of visitors are more motivated than we were, and come for the hiking.  The 18-mile-long Rakiura Track is typically done in three days; hikers sleep in the two huts along the way, which come stocked with firewood provided by park staff. Despite long sections of boardwalks, the track is renowned for its mud: deep, slick and absolutely everywhere. But one hiker told me the beaches and the forests are beautiful, and it is less overrun than the tracks on the mainland.</p>
<p><a href="http://4.bp.blogspot.com/_VymcqAZDv5c/Shb8pmUpQZI/AAAAAAAAAFU/TJtn3HfFTYc/s1600-h/IMG_0959.jpg"><img style="display:block;text-align:center;cursor:hand;width:400px;height:266px;margin:0 auto 10px;" src="http://4.bp.blogspot.com/_VymcqAZDv5c/Shb8pmUpQZI/AAAAAAAAAFU/TJtn3HfFTYc/s400/IMG_0959.jpg" border="0" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Portfolio Assignment #2: Setting up PyDelicious and Weka]]></title>
<link>http://viralidealogue.wordpress.com/2009/02/02/dm-proj2/</link>
<pubDate>Mon, 02 Feb 2009 05:13:19 +0000</pubDate>
<dc:creator>jnmay87</dc:creator>
<guid>http://viralidealogue.wordpress.com/2009/02/02/dm-proj2/</guid>
<description><![CDATA[Part 1 &#8211; Python I downloaded the code for Chapter 2 from the author&#8217;s blog. At first I t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Part 1 &#8211; Python</strong></p>
<p>I downloaded the <a href="http://blog.kiwitobes.com/?p=44" target="_blank">code for Chapter 2</a> from the author&#8217;s blog. At first I tried to update the code from version 2 to version 3. Some of the main differences had to do with ambiguities in the language with type definitions. Python 3.0 includes some new keywords to clarify issues with exception handling, for example. It also comes with a handy tool called, &#8216;2t03.py&#8217;, which converts the code to work on version 3, but the new generated code had indentation problems. After fixing these, I ran the code from the book:</p>
<p><code>&#62;&#62;&#62; import pydelicious<br />
Traceback (most recent call last):<br />
File "&#60;pyshell#4&#62;", line 1, in &#60;module&#62;<br />
import pydelicious<br />
File "C:Python30libpydelicious.py", line 89, in &#60;module&#62;<br />
import md5, httplib<br />
ImportError: No module named md5</code></p>
<p>The md5 encryption library is missing from version 3.0, so I decided that version 3.0 will have to wait.</p>
<p>I installed version 2.6 to find that the md5 library is deprecated, however it only produces a warning. I installed the &#8216;feedparser.py&#8217; library from <a href="http://feedparser.org" target="_blank">feedparser.org</a>. I tried using pydelicious again:</p>
<p><code>&#62;&#62;&#62; import pydelicious</code></p>
<p><code>Warning (from warnings module):<br />
File "C:Python26libpydelicious.py", line 89<br />
import md5, httplib</code></p>
<p><code>DeprecationWarning: the md5 module is deprecated; use hashlib instead<br />
&#62;&#62;&#62; py=pydelicious.get_popular(tag='programming')<br />
&#62;&#62;&#62; len(py)<br />
12<br />
&#62;&#62;&#62; py<br />
[{'count': '', 'extended': '', 'hash': '', 'description': u'100 Vim commands every programmer should know', 'tags': u'Vim tips programming editor reference', 'href': u'http://www.catswhocode.com/blog/100-vim-commands-every-programmer-should-know', 'user': u'devabc', 'dt': u'2008-12-08T23:13:36Z'}, ...]</code></p>
<p>The input continued to print the remaining 11 results in the list. Success! After building the data set, I ran some of the functions from my last blog on delicious users, and found some interesting information about certain users&#8230; well, not that interesting.</p>
<p>I also walked through the code for the item-based filtering method that I mentioned in my last blog. Now to test it with data from <a href="http://www.grouplens.org/node/73" target="_blank">http://www.grouplens.org/node/73</a>. After setting the path in the &#8216;recommendations.py&#8217; file, the code ran exactly as printed in the book.</p>
<p><strong>Part 2 &#8211; Weka</strong></p>
<p>Following along with the book, I have played around with the formatting of <tt>.arff</tt> and <tt>.csv</tt> files. It seems like the only difference between opening a <tt>.csv</tt> file versus an <tt>.arff</tt> file in Weka is that in the .arff file you can define numeric attributes with a more specific type, such as &#8216;real&#8217; instead of &#8216;numeric&#8217;. However it didn&#8217;t seem to affect the outcome much in the example I tried.</p>
<p>Looking at the output in figure 10.5, I think I have a good understanding of what the output means.</p>
<p><tt>=== Run Information ===</tt></p>
<ol>
<li>Scheme = the type of classifier used.</li>
<li>Relation = the name of the data (as set in the <tt>.arff</tt> header).</li>
<li>Instances = the number of instances in the data (rows in the data section as separated by newlines).</li>
<li>Attributes = a section contain the number of attributes followed by their names.</li>
<li>Test mode = the way the classifier was tested.</li>
</ol>
<p><tt>=== Classifier Model (for tree models) ===</tt></p>
<ol>
<li>Decision Tree: the decision tree is displayed here.<br />
The layout is pretty simple. The rules determine which branch of the tree you traverse until you reach a decision.</li>
<li>Number of Leaves = the number of ways a decision can be reached in this model.</li>
<li>Size of the tree = the number of nodes.<br />
This is the number of leaves plus the nodes where the rules are used to determine which path to take.</li>
<li>Time Taken to build model = &#8230; self-explanatory.</li>
</ol>
<p>The classifier is then tested by separating the data into 10 sections and training the classifier on 9 of the sections and testing it against the remaining section and cycling the sections. This is called 10-fold cross-validation. The information is compiled, scaled, analyzed, and displayed in the summary section:</p>
<p><tt>=== Summary ===</tt></p>
<ol>
<li>Correctly Classified Instances</li>
<li>Incorrectly Classified Instances</li>
<li>Error statistics<br />
I don&#8217;t quite understand all the differences between these error values, but it seems like a good section to analyze the ability of this model to predict correctly.</li>
</ol>
<p><tt>=== Detailed Accuracy By Class ===</tt></p>
<p>This section contains information about how accurate the model was. It contains the precision among other variables.</p>
<p><tt>=== Confusion Matrix ===</tt></p>
<p>The columns of this matrix are the predictions of the model, the rows are the actual results. If the classifier is right, then it will mostly predict the same as the actual data, thus making the number greatest on the main diagonal.</p>
<p><tt>a b &#60;-- classified as</tt><br />
<tt>7</tt><tt> 2 &#124; a = yes</tt><br />
<tt>3 </tt><tt>2</tt><tt> &#124; b = no</tt></p>
<p>The confusion matrix is a good way to analyze where the model failed, so as to guess why it might be predicting the data incorrectly.</p>
<p>All-in-all, Weka is a powerful tool for analyzing data. Sweet!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[folio dos -  weka and pydelicious.]]></title>
<link>http://whatknight.wordpress.com/2009/02/01/folio-dos-weka-and-pydelicious/</link>
<pubDate>Mon, 02 Feb 2009 01:30:19 +0000</pubDate>
<dc:creator>whatknight</dc:creator>
<guid>http://whatknight.wordpress.com/2009/02/01/folio-dos-weka-and-pydelicious/</guid>
<description><![CDATA[Sweet. As of writing this, halftime of the superbowl, pydelicious does not want to install or play n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sweet. As of writing this, halftime of the superbowl, pydelicious does not want to install or play nice. Maybe i&#8217;ll figure it out. The good news is that weka is much nicer. It&#8217;s a pretty intuitive piece of software too. Everything just fell into place. Running every dataset through every different prediction method seems like it would be pretty fun.</p>
<p>On to J48 and heart disease. </p>
<p>=== Run information ===</p>
<p>Scheme:       weka.classifiers.trees.J48 -C 0.25 -M 2<br />
Relation:     cleveland-14-heart-disease<br />
Instances:    303<br />
Attributes:   14<br />
              age<br />
              sex<br />
              cp<br />
              trestbps<br />
              chol<br />
              fbs<br />
              restecg<br />
              thalach<br />
              exang<br />
              oldpeak<br />
              slope<br />
              ca<br />
              thal<br />
              num<br />
Test mode:    10-fold cross-validation</p>
<p>=== Classifier model (full training set) ===</p>
<p>J48 pruned tree<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>thal = fixed_defect<br />
&#124;   ca &#60;= 0<br />
&#124;   &#124;   exang = no: 50_1 (3.06/1.0)<br />
&#124;   ca &#62; 0: &#62;50_1 (10.0)<br />
thal = normal<br />
&#124;   ca &#60;= 0:  0<br />
&#124;   &#124;   cp = typ_angina<br />
&#124;   &#124;   &#124;   trestbps 50_1 (4.0/1.0)<br />
&#124;   &#124;   &#124;   trestbps &#62; 138: 50_1 (20.0/3.0)<br />
&#124;   &#124;   cp = non_anginal: 50_1 (3.0)<br />
&#124;   &#124;   &#124;   &#124;   exang = yes: &#60;50 (2.0)<br />
&#124;   &#124;   &#124;   restecg = normal: &#60;50 (4.0)<br />
&#124;   &#124;   &#124;   restecg = st_t_wave_abnormality: &#60;50 (0.0)<br />
thal = reversable_defect<br />
&#124;   cp = typ_angina<br />
&#124;   &#124;   chol &#60;= 229:  229<br />
&#124;   &#124;   &#124;   age 50_1 (2.0)<br />
&#124;   &#124;   &#124;   age &#62; 48: &#60;50 (3.0/1.0)<br />
&#124;   cp = asympt<br />
&#124;   &#124;   oldpeak 50_1 (8.0/1.0)<br />
&#124;   &#124;   &#124;   restecg = normal<br />
&#124;   &#124;   &#124;   &#124;   trestbps &#60;= 136<br />
&#124;   &#124;   &#124;   &#124;   &#124;   ca &#60;= 0:  0<br />
&#124;   &#124;   &#124;   &#124;   &#124;   &#124;   thalach &#60;= 151:  151: &#62;50_1 (3.0)<br />
&#124;   &#124;   &#124;   &#124;   trestbps &#62; 136: &#62;50_1 (4.0)<br />
&#124;   &#124;   &#124;   restecg = st_t_wave_abnormality: &#62;50_1 (0.0)<br />
&#124;   &#124;   oldpeak &#62; 0.6: &#62;50_1 (57.39)<br />
&#124;   cp = non_anginal<br />
&#124;   &#124;   slope = up: &#60;50 (7.39/1.0)<br />
&#124;   &#124;   slope = flat<br />
&#124;   &#124;   &#124;   ca &#60;= 0<br />
&#124;   &#124;   &#124;   &#124;   trestbps &#60;= 122:  122: &#62;50_1 (3.0)<br />
&#124;   &#124;   &#124;   ca &#62; 0: &#62;50_1 (8.0/1.0)<br />
&#124;   &#124;   slope = down: &#60;50 (1.0)<br />
&#124;   cp = atyp_angina<br />
&#124;   &#124;   ca &#60;= 0<br />
&#124;   &#124;   &#124;   oldpeak &#60;= 0.1:  0.1: &#62;50_1 (2.75/0.75)<br />
&#124;   &#124;   ca &#62; 0: &#62;50_1 (2.25/0.25)</p>
<p>Number of Leaves  : 	30</p>
<p>Size of the tree : 	51</p>
<p>Time taken to build model: 0.03 seconds</p>
<p>=== Stratified cross-validation ===<br />
=== Summary ===</p>
<p>Correctly Classified Instances         235               77.5578 %<br />
Incorrectly Classified Instances        68               22.4422 %<br />
Kappa statistic                          0.5443<br />
Mean absolute error                      0.1044<br />
Root mean squared error                  0.2725<br />
Relative absolute error                 52.0476 %<br />
Root relative squared error             86.5075 %<br />
Total Number of Instances              303     </p>
<p>=== Detailed Accuracy By Class ===</p>
<p>               TP Rate   FP Rate   Precision   Recall  F-Measure   ROC Area  Class<br />
                 0.83      0.29       0.774     0.83      0.801      0.809    50_1<br />
                 0         0          0         0         0          ?        &#62;50_2<br />
                 0         0          0         0         0          ?        &#62;50_3<br />
                 0         0          0         0         0          ?        &#62;50_4<br />
Weighted Avg.    0.776     0.235      0.776     0.776     0.774      0.809</p>
<p>=== Confusion Matrix ===</p>
<p>   a   b   c   d   e   &#60;&#8211; classified as<br />
 137  28   0   0   0 &#124;   a = 50_1<br />
   0   0   0   0   0 &#124;   c = &#62;50_2<br />
   0   0   0   0   0 &#124;   d = &#62;50_3<br />
   0   0   0   0   0 &#124;   e = &#62;50_4</p>
<p> There&#8217;s the output from running the dataset with the J48 decision tree/classifier with the num class. As you can read above the method was 4 out of 5 times correct in it&#8217;s prediction of number?. Thats pretty good. I&#8217;m not really sure what the num means in the dataset though. One of J48&#8217;s limitations is that it can only predict nominal attributes. The best prediction rate was like 85% right. That&#8217;s even better. It was for the fbs category though. I don&#8217;t know what that means. But weka can predict t and f&#8217;s like no one&#8217;s business.</p>
<p>Right now python is my enemy. I&#8217;ll post an update later.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bachelor Thesis]]></title>
<link>http://ltty.wordpress.com/2008/12/20/bachelor-thesis/</link>
<pubDate>Sat, 20 Dec 2008 19:00:08 +0000</pubDate>
<dc:creator>L&#039;tty</dc:creator>
<guid>http://ltty.wordpress.com/2008/12/20/bachelor-thesis/</guid>
<description><![CDATA[Recently, I have finished my bachelor thesis on the topic Machine Learning for Gesture Recognition. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Recently, I have finished my bachelor thesis on the topic Machine Learning for Gesture Recognition. The paper is about principles of machine learning using decision trees, rulesets, functions or lazy algorithms, which are already implemented for the machine learning tool <a title="WEKA" href="http://www.cs.waikato.ac.nz/ml/weka/" target="_blank">WEKA</a>. For this usecase, I&#8217;ve developed a paint tool, where a user can record training data in form of geometrical symbols. This symbols can be found in the computer game &#8220;Black &#38; White&#8221;, where the user can interact by drawing figures with the mouse. Also Opera has such a feature implemented. I used these figures (also complexer too), calculate attributes and evaluated various machine learning strategies, such as a RandomForest or a Multilayer Perceptron. This paper may be used as basics to implement gesture recognition for mobile phones with acceleration sensors.</p>
<p>You will find the paper online in a few days, so if you are interested in it, have a look and tell me what you think about.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Weka 3, Mineria de Datos]]></title>
<link>http://ticmundo.wordpress.com/2008/10/01/weka-3-mineria-de-datos/</link>
<pubDate>Wed, 01 Oct 2008 16:31:46 +0000</pubDate>
<dc:creator>j_rifer</dc:creator>
<guid>http://ticmundo.wordpress.com/2008/10/01/weka-3-mineria-de-datos/</guid>
<description><![CDATA[Mineria de Datos Toda empresa se transforma y va creciendo. A medida que se va consolidando, ve la n]]></description>
<content:encoded><![CDATA[Mineria de Datos Toda empresa se transforma y va creciendo. A medida que se va consolidando, ve la n]]></content:encoded>
</item>
<item>
<title><![CDATA[The New Zealand Chronicles:Part 5 - Here Comes the Sun]]></title>
<link>http://visualaffects.wordpress.com/2008/09/24/the-new-zealand-chroniclespart-5-here-comes-the-sun/</link>
<pubDate>Wed, 24 Sep 2008 07:54:46 +0000</pubDate>
<dc:creator>mipdirector</dc:creator>
<guid>http://visualaffects.wordpress.com/2008/09/24/the-new-zealand-chroniclespart-5-here-comes-the-sun/</guid>
<description><![CDATA[*** First written June 16, 2002*** Today is a rather uneventful day. Most of the day is spent workin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="MsoPlainText">*** First written June 16, 2002***</p>
<p class="MsoPlainText">Today is a rather uneventful day.<span> </span>Most of the day is spent working on Midnight Club 2.</p>
<p class="MsoPlainText">The sun came out, however. The rains and winds have past. <span> </span>Sailboats and sea kayaks are out in Oriental Bay in droves.<span> </span>Still chilly though.</p>
<p class="MsoPlainText">Brunch is a hard thing to come by.<span> </span>Most places have stopped serving after 11am.<span> </span>We didn&#8217;t wake too late, its just that we pushed eating back a while.<span> </span>We were looking for some pancakes.<span> </span>Evidentally, International House of Pancakes isn&#8217;t so international.<span> </span>Everyplace we looked, restaurants offered pancakes for brunch &#8212; but every single place had Bacon and Banana Pancakes.<span> </span>We haven&#8217;t found out whether or not they mix bacon into the batter or place cooked Bacon on top of the the cooked stack.<span> </span>There just seems to be something wrong about it.<span> </span>Perhaps in a couple months we&#8217;ll be ready to venture into the territory of Bacon and Banana Pancakes.<span> </span>Until then, I think they probably have cereal around here someplace.</p>
<p class="MsoPlainText">There is a McDonald&#8217;s across the street, so we decide to take that as an alternative.<span> </span>They don&#8217;t serve breakfast after 10:30 here (just like home) &#8212; but its lunchtime anyway.<span> </span>I look at the menu and decide to go for the Quarter Pounder (not Royale with Cheese &#8211; BTW).<span> </span>I could have gone for the MegaFeast burger.<span> </span>It looks like it could be the Big and Tasty.<span> </span>Doesn&#8217;t the Big N Tasty have mayo?<span> </span>I&#8217;ve never had one before.<span> </span>OR &#8212; I could have gone for the Kiwiburger, which has an egg and something else unidentifyable.<span> </span>I ask what it is, but couldn&#8217;t understand what the McD employee said.<span> </span>After saying &#8220;I&#8217;m sorry, I didn&#8217;t catch that&#8221; and him repeating it and I not understanding it again, I decided to leave it alone.</p>
<p class="MsoPlainText">Its the Queen&#8217;s Birthday this weekend.<span> </span>I&#8217;m not sure if it was telecast in the States, but there was a huge ordeal in England with Paul McCartny, Rod Stewart, Joe Cocker, Eric Clapton, et al, performing on behalf of the Queen.<span> </span>Most stores are closed or have alternate hours to celebrate the event.  I have to find a technical book on Renderman and bone up before starting work, and now I can&#8217;t because a royal figurehead has to have her birthday party.  And everyone is invited.</p>
<p class="MsoPlainText">Also caught the MTV Movie Award.<span> </span>Sigh.<span> </span>It makes me sad.<span> </span>At least Lord of the Rings got best picture.<span> </span>But against Legally Blonde and Fast and the Furious?<span> It just makes me have so much more contempt for the MTV generation.  Is that how our parents felt when we liked movies like Jaws, or Close Encounters or Clash of the Titans?  Did they say &#8220;Those darn kids and their Indiana Jones!  Thats not filmmaking!&#8221;  Fast and the Furious&#8230;REALLY!?  Best picture?  Even if its just a nomination&#8230;I have very little hope for the younger generation.</span></p>
<p class="MsoPlainText">Maori translations of Weta related words.</p>
<p class="MsoPlainText">Weta (as mentioned earlier) &#8211; a large indigenous cricket deriving its name from “wetapunga”, which translates to “God of ugly things”</p>
<p class="MsoPlainText">Rongotai = (possibly) &#8220;Listen to the Sea&#8221;.<span> </span>There are many definitions of both Rongo and Tai &#8212; this definition sounds the most poetic.</p>
<p class="MsoPlainText">Weka = Barn Hen.<span> </span>Not really poetic, but the only definition.</p>
<p class="MsoPlainText">Manuka =<span> </span>could be tea-tree &#8212; could be anti-inflammatory medicine.<span> Smart money is on tea-tree</span>.</p>
<p class="MsoPlainText">The rest of the day is back to work.<span> </span>Gotta get this thing out of the way before wrangling Gollum.</p>
<p class="MsoPlainText">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aktuelle Auswahl an Online-Artikeln bei www.magnus.de]]></title>
<link>http://ilmberger.wordpress.com/2008/09/11/aktuelle-online-artikel-bei-wwwmagnusde/</link>
<pubDate>Wed, 10 Sep 2008 23:12:39 +0000</pubDate>
<dc:creator>drenegadt</dc:creator>
<guid>http://ilmberger.wordpress.com/2008/09/11/aktuelle-online-artikel-bei-wwwmagnusde/</guid>
<description><![CDATA[Ich schreibe gerne und ich hab das Glück, damit sogar Geld zu verdienen. Diese Texte sind allerdings]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ich schreibe gerne und ich hab das Glück, damit sogar Geld zu verdienen. Diese Texte sind allerdings weniger philosophischer Art. Vielmehr handelt es sich um Fachartikel aus der PC- und Home-Entertainment-Branche. Derzeit arbeite ich beim WEKA-Online-Portal. Schau doch einfach mal auf einen Seitensprung vorbei unter <a href="http://www.magnus.de" target="_blank"><span style="color:#ff0000;">www.magnus.de</span></a>, hier lohnt ein Besuch immer. Und willst Du mal direkt auskundschaften, was ich bei <a href="http://www.magnus.de" target="_blank"><span style="color:#ff0000;">magnus.de</span></a> so treibe, kannst Du einen der unten angeführten Links als Abkürzung nehmen. <!--more--></p>
<p><strong>Mai 2009</strong> </p>
<p><a href="http://hardware.magnus.de/desktop-server/artikel/magnus-de-history-erster-computer-zuse-z3-feiert-geburtstag.html" target="_blank"><span style="color:#ff0000;">magnus.de History! Erster Computer Zuse Z3 feiert Geburtstag:</span> </a>Konrad Zuses Z3 wurde am 12. Mai 2009 bereits 68 Jahre alt</p>
<p> </p>
<p><strong>April 2009</strong></p>
<p><a href="http://news.magnus.de/foto-video-hifi/artikel/purpl-ray-nachfolger-von-blu-ray-erstmals-vorgestellt-8-terabyte.html" target="_blank"><span style="color:#ff0000;">Purpl-ray &#8211; Nachfolger von Blu-ray mit 8 Terrabyte erstmals vorgestellt:</span></a> Mein Beitrag zum 1. April auf magnus.de <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p> </p>
<p><strong>März 2009</strong></p>
<p><a href="http://home-entertainment.magnus.de/kino-dvds/artikel/krabat-auf-dvd-und-blu-ray.html" target="_blank"><span style="color:#ff0000;">Krabat auf DVD und Blu-ray:</span></a><span style="color:#ff0000;"> </span>Special und Gewinnspiel zum Film &#8220;Krabat&#8221;</p>
<p><a href="http://home-entertainment.magnus.de/kino-dvds/artikel/james-bond-ein-quantum-trost-auf-dvd.html" target="_blank"><span style="color:#ff0000;">James Bond 007 &#8211; Ein Quantum Trost:</span></a> Special, Bildergalerie und Gewinnspiel zum neuesten James Bond auf DVD und Blu-ray-Disc</p>
<p><a href="http://home-entertainment.magnus.de/player-receiver/artikel/test-web-radio-terratec-noxon-90elf.html" target="_blank"><span style="color:#ff0000;">Test &#8211; TerraTec Noxon 90elf:</span> </a>Das Internet-Radio für alle Fußball-Bundesliga-Fans im Praxistest</p>
<p><a href="http://community.magnus.de/blogs/cebit2009/" target="_blank"><span style="color:#ff0000;">CeBIT-Blog auf magnus.de: </span></a>Die ungeschminkte Wahrheit zur CeBIT anno 2009</p>
<p> </p>
<p><strong>Februar 2009</strong></p>
<p><a href="http://www.magnus.de/cebit-2009/artikel/die-highlights-und-trends-der-cebit-2009.html" target="_blank"><span style="color:#ff0000;">CeBIT 2009:</span></a> Die Trends und Highligts auf der weltgrößten Computermesse</p>
<p><a href="http://tests.magnus.de/hardware/artikel/check-aldi-notebook-medion-akoya-p6613.html" target="_blank"><span style="color:#ff0000;">Aldi-Notebook Medion Akoya P6613:</span></a> Vorschau auf ein neues Notebook von unser aller Lieblings-Discounter</p>
<p> </p>
<p><strong>Januar 2009</strong> </p>
<p><a href="http://community.magnus.de/blogs/kommentar/2009/02/04/probleme-mit-blu-ray-oder-der-feind-in-meinem-computerfreien-wohnzimmer/" target="_blank"><span style="color:#ff0000;">Magnus-Blog:</span></a> &#8220;Probleme mit Blu-ray&#8221; oder &#8220;Der Feind in meinem computerfreien Wohnzimmer&#8221;</p>
<p><a href="http://community.magnus.de/blogs/kommentar/2009/01/29/wohl-dem-der-noch-in-die-rohre-gucken-darf/?preview=true" target="_blank"><span style="color:#ff0000;">Magnus-Blog:</span></a> Wohl dem, der noch in die Röhre gucken darf?</p>
<p><a href="http://home-entertainment.magnus.de/tv-beamer/artikel/kaufberatung-flachbildfernseher.html" target="_blank"><span style="color:#ff0000;">Kaufberatung Flachbildfernseher:</span></a> Die besten TV-Geräte von 32 bis 52 Zoll</p>
<p><a href="http://home-entertainment.magnus.de/tv-beamer/artikel/technik-lexikon-hdtv.html" target="_blank"><span style="color:#ff0000;">Technik-Lexikon HDTV und Flachbildfernseher:</span></a> Die 50 wichtigsten Begriffe rund um das Thema HDTV und Flachbildfernseher kurz, kompetent und verständlich erkläret</p>
<p> </p>
<p><strong>Dezember 2008</strong></p>
<p><a href="http://tests.magnus.de/hardware/artikel/aldi-vs-lidl-netbook-duell.html" target="_blank"><span style="color:#ff0000;">Duell der Netbooks:</span></a> Lidl Targa Traveller 1016 versus Aldi Medion akoya Mini E1210</p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/aldi-medion-akoya-s2210.html" target="_blank"><span style="color:#ff0000;">Sub-Notebook Medion akoya S2210:</span></a> Swarovski-Notebook reloaded</p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/aldi-medion-akoya-p8610.html" target="_blank"><span style="color:#ff0000;">Notebook Medion Akoya P8610:</span></a> Desktop-Replacement-Notebook mit 18,4-Zoll-Display bei Aldi</p>
<p><a href="http://home-entertainment.magnus.de/tv-beamer/artikel/schnaeppchen-lcd-und-plasma.html" target="_blank"><span style="color:#ff0000;">Medion/Tevion life X15002 versus LG 32 PG 6000:</span></a> Fernseh-Duell zwischen Aldi und Media Markt</p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/check-targa-traveller-1534.html" target="_blank"><span style="color:#ff0000;">Targa-Notebook Traveller 1534:</span></a> Ausnahmsweise mal wieder ein Mobil-Rechner von Lidl  </p>
<p> </p>
<p><strong>November 2008</strong></p>
<p><a href="http://mobile.magnus.de/navigation/artikel/check-medion-navi-gopal-p5430.html" target="_blank"><span style="color:#ff0000;">Medion Navigationssystem P5430:</span></a> Edles Navi mit 5 Zoll Display und Top-Ausstattung im Experten-Check</p>
<p><a href="http://hardware.magnus.de/desktop-server/artikel/check-medion-akoya-p7300-d.html" target="_blank"><span style="color:#ff0000;">Medion-PC Akoya P7300 D:</span></a> Der neueste Multimedia-PC von Aldi im Experten-Check</p>
<p><a href="http://hardware.magnus.de/zubehoer/artikel/tevion-digitaler-notizblock.html" target="_blank"><span style="color:#ff0000;">Tevion Digitaler Notizblock:</span></a> Günstiges &#8220;Grafiktablett&#8221; von Aldi im Experten-Check</p>
<p><a href="http://www.magnus.de/artikel/film-kritik-max-payne.html" target="_blank"><span style="color:#ff0000;">Max Payne:</span></a> Die Film-Kritik und eine <a href="http://home-entertainment.magnus.de/kino-dvds/artikel/gewinnspiel-max-payne.html" target="_blank"><span style="color:#ff0000;">Verlosungsaktion</span></a> zum Action-Streifen mit Mark Wahlberg  </p>
<p><a href="http://www.magnus.de/artikel/check-medion-akoya-s2210.html" target="_blank"><span style="color:#ff0000;">Sub-Notebook Medion akoya S2210:</span></a> Schmuckes Notebook für Damen bei Aldi</p>
<p><a href="http://news.magnus.de/tv-film-musik/artikel/dvd-barbara-schoeneberger.html" target="_blank"><span style="color:#ff0000;">Barbara Schöneberger &#8211; Jetzt singt sie auch noch &#8230; Live!:</span></a> Eine kleine DVD-Vorschau</p>
<p><a href="http://www.magnus.de/artikel/test-navgear-gt-43-3d.html" target="_blank"><span style="color:#ff0000;">Pearl Navigationssystem NavGear StreetMate GT-43 3D:</span></a> Vermeintliches Billig-Navi im Praxistest</p>
<p> </p>
<p><strong>Oktober 2008</strong></p>
<p><a href="http://www.magnus.de/artikel/dvd-tipps-zu-halloween.html" target="_blank"><span style="color:#ff0000;">DVD-Tipps zu Halloween:</span></a> Schaurig schöne Halloween-Filme zum Gruseln</p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/check-medion-akoya-md-97110.html" target="_blank"><span style="color:#ff0000;">Aldi-Notebook Medion akoya MD 97110 (P6612):</span></a> Vorschau über das erste 16-Zoll-Notebook beim Lebensmittel-Discounter</p>
<p><a href="http://www.magnus.de/artikel/test-medion-e4430-navigator.html" target="_blank"><span style="color:#ff0000;">Aldi-Navi Medion Design GPS Navigationssystem E4430 (auch E4435 und MD 96960):</span></a> Einzeltest über den im Oktober 2008 kommenden Wegbegleiter bei Aldi Süd</p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/aldi-netbook-medion-akoya-e1210.html" target="_blank"><span style="color:#ff0000;">Aldi Netbook Medion Akoya E1210:</span></a> Vorschau auf das kommende Aldi-Netbook inklusive kurzem Konkurrenz-Vergleich </p>
<p><a href="http://home-entertainment.magnus.de/foto-video/artikel/pearl-scanner-fuer-dia-foto.html" target="_blank"><span style="color:#ff0000;">Pearl Somikon Dia- &#38; Foto-Scanner und Universal Foto-Scanner:</span></a> Praxistests über zwei Bild-Digitalisierer, die leider nicht retten, was zu retten ist&#8230;</p>
<p><a href="http://tests.magnus.de/mobile/artikel/auvisio-ipod-roehrenverstaerker.html" target="_blank"><span style="color:#ff0000;">Pearl auvisio Röhren-Verstärker für iPods:</span></a> Einzeltest über einen ulkigen Schreibtisch-Beschaller </p>
<p> </p>
<p><strong>September 2008</strong></p>
<p>News über ein Navi (<a href="http://mobile.magnus.de/navigation/artikel/medion-navigator-gopal-e3230.html" target="_blank"><span style="color:#ff0000;">Medion GoPal E3230</span></a>) und eine externe Festplatte (<a href="http://hardware.magnus.de/pc-komponenten/artikel/medion-p83710-md90101.html" target="_blank"><span style="color:#ff0000;">Medion P83710 / MD90101</span></a>) bei Aldi</p>
<p><a href="http://hardware.magnus.de/desktop-server/artikel/aldi-pc-medion-akoya-e4320-d.html" target="_blank"><span style="color:#ff0000;">Medion akoya E4320 D:</span></a> Vorschau auf den neuen Multimedia-PC im September 2008 bei Aldi</p>
<p><a href="http://mobile.magnus.de/musik-videoplayer/artikel/test-creative-zen-x-fi-versus-pearl-auvisio-worldbeat-wifi.html" target="_blank"><span style="color:#ff0000;">Creative ZEN X-Fi vs. Pearl Auvisio WorldBeat WiFi:</span></a> Die ersten WLAN-MVP-Player für die Hosentasche im Shootout</p>
<p><a href="http://mobile.magnus.de/musik-videoplayer/artikel/top-news-apple-stellt-neue-ipod-generation-vor.html" target="_blank"><span style="color:#ff0000;">Top-News Apple iPod:</span></a> Neuauflage der MP3-Player iPod nano und iPod touch</p>
<p><a href="http://tests.magnus.de/hardware/artikel/test-chieftec-htpc-gehaeuse-h2o-edition.html" target="_blank"><span style="color:#ff0000;">Chieftec-Gehäuse HTPC H2O:</span></a> Test eines Desktop-Gehäuses mit integrierter Wasserkühlung</p>
<p><a href="http://community.magnus.de/blogs/kommentar/2008/09/04/und-immer-wieder-grust-das-aldi-notebook/" target="_blank"><span style="color:#ff0000;">Aldi-Blog</span></a><span style="color:#ff0000;">:</span> Hightech zwischen Milchtheke und Gemüseregal</p>
<p><a href="http://tests.magnus.de/hardware/artikel/angetestet-medion-akoya-md-96970.html" target="_blank"><span style="color:#ff0000;">Medion Akoya MD 96970:</span></a> Das Aldi-Notebook im Kurzcheck gegen die Konkurrenz</p>
<p><a href="http://home-entertainment.magnus.de/player-receiver/artikel/ifa-news-dreambox-dm-8000-hd-pvr-dvd.html" target="_blank"><span style="color:#ff0000;">SAT-Receiver Dreambox DM 8000:</span></a> IFA-News 2008 zum kommenden HD-Kult-Receiver</p>
<p> </p>
<p><strong>August 2008</strong></p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/ifa-news-samsung-x360.html" target="_blank"><span style="color:#ff0000;">Notebook Samsung X360:</span></a> IFA-News 2008 zum Samsung-Notebook X360</p>
<p><a href="http://home-entertainment.magnus.de/hifi-sound/artikel/praxistest-beyerdynamic-dtx-50-individual.html" target="_blank"><span style="color:#ff0000;">In-Ear-Kopfhörer Beyerdynamic DTX 50 Individual:</span></a> Maßgeschneiderte Nobelhörer im Härtetest</p>
<p><a href="http://home-entertainment.magnus.de/player-receiver/artikel/praxistest-shiatsu-massageauflage-von-pearl.html" target="_blank"><span style="color:#ff0000;">Test Pearl Shiatsu Massageauflage:</span></a> Draufsetzen, anschalten, wohlfühlen &#8230; funktioniert tatsächlich <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://home-entertainment.magnus.de/player-receiver/artikel/praxistest-logitech-squeezebox-duet.html" target="_blank"><span style="color:#ff0000;">Test Logitech Squeezbox Duet:</span></a> Soundübertragung vom PC zur HiFi-Anlage mit kleine Haken&#8230;</p>
<p><a href="http://home-entertainment.magnus.de/player-receiver/artikel/sony-bdp-s300e-samsung-bd-p1400-blu-ray-unter-250-euro.html" target="_blank"><span style="color:#ff0000;">B</span><span style="color:#ff0000;">lu-ray-Player Sony BDP-S300E &#38; Samsung BD-P1400:</span></a> Billig-Player müssen nicht immer günstig sein&#8230;</p>
<p><a href="http://hardware.magnus.de/notebooks/artikel/angetestet-medion-akoya-md96850-und-samsung-r60-aura-t2370.html" target="_blank"><span style="color:#ff0000;">Notebook Medion MD 96850 vs. Samsung R60 Aura:</span></a> Aldi gegen die Media-Markt-Konkurrenz im Vergleich</p>
<p> </p>
<p><strong>Ein paar CHIP-Oldies</strong></p>
<p><a href="http://www.chip.de/artikel/Im-Vergleich-DDR3-und-DDR2-Speicher_26646930.html" target="_blank"><span style="color:#ff0000;">Test DDR3 versus DDR2-Speicher:</span></a> Die neue Speichertechnik im Praxisvergleich zur Vorgängertechnik</p>
<p><a href="http://www.chip.de/artikel/Intel-Core-2-Extreme-QX9650-Prozessor_29257971.html" target="_blank"><span style="color:#ff0000;">Test Intel Core-2-Extreme QX9650 Prozessor:</span></a> Der erste 4-Kern-Penryn-Prozessor im Test</p>
<p><a href="http://www.edv-service-mettenheim.de/bilder/netzteile/chip_05-2002.pdf" target="_blank"><span style="color:#ff0000;">Test PC-Netzteile:</span></a> Nicht überall wo Power draufsteht, steckt auch wirklich Power drin &#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A Cruel, Barbaric, Psychopathic People ]]></title>
<link>http://newzeelend.wordpress.com/2008/05/09/a-cruel-barbaric-psychopathic-people/</link>
<pubDate>Fri, 09 May 2008 00:01:03 +0000</pubDate>
<dc:creator>feww</dc:creator>
<guid>http://newzeelend.wordpress.com/2008/05/09/a-cruel-barbaric-psychopathic-people/</guid>
<description><![CDATA[Submitted by a reader Weka found with arrow through eye Weka shot with an arrow (Source: Stuff New Z]]></description>
<content:encoded><![CDATA[Submitted by a reader Weka found with arrow through eye Weka shot with an arrow (Source: Stuff New Z]]></content:encoded>
</item>
<item>
<title><![CDATA[Softwares livres para Banco de Dados]]></title>
<link>http://setur.wordpress.com/2008/04/14/softwares-livres-para-banco-de-dados/</link>
<pubDate>Mon, 14 Apr 2008 03:38:40 +0000</pubDate>
<dc:creator>Samuel Etur</dc:creator>
<guid>http://setur.wordpress.com/2008/04/14/softwares-livres-para-banco-de-dados/</guid>
<description><![CDATA[Olá pessoal. Neste fim de semana preparei uma pequena matéria de alguns softwares livres utilizados ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="texto">Olá pessoal. Neste fim de semana preparei uma pequena matéria de alguns softwares livres utilizados por quem trabalha com banco de dados. Geralmente estes softwares trabalham com diversos tipos de bancos de dados, livres ou não, e são multiplataforma. Alguns deles seguem o modelo de licença GPL e outros não, mas mesmo assim todos são softwares maduros e muito interessantes para quem trabalha com banco de dados. Esta é apenas uma pequena listagem contendo alguns softwares úteis para o dia a dia.</p>
<p class="texto">É importante dizer que não sou especialista nestas ferramentas e que faço uso somente de suas opões básicas. Para mais detalhes, por favor, procurem a documentação da ferramenta, o site do fabricante, etc.. Também é importante dizer que não me responsabilizo por qualquer uso destas ferramentas.</p>
<p class="texto"><strong>1. Weka</strong></p>
<p class="texto">O Weka (Waikato Environment for Knowledge Analisys) é uma excelente ferramenta escrita em Java para mineração de dados. Ele contém um grande conjunto de algoritmos prontos para serem usados. Vale a pena destacar também a grande quantidade de recursos para a limpeza e tratamento de dados, que auxiliam muito o processo de ETL (Extract Transform Load). A figura abaixo apresenta a janela do Weka Knowledge Explorer sendo executada no Mac X, onde podemos perceber que várias abas são disponibilizadas para o tratamento dos dados a serem minerados.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura01.jpg?w=530&#038;h=399" alt="Weka" width="530" height="399" /></p>
<p class="texto"><span style="color:#669900;">Figura 1. Interface gráfica do Weka</span>.</p>
<p class="texto" style="text-align:left;">Link para o download do Weka: <a href="http://www.cs.waikato.ac.nz/~ml/weka/index.html" target="_blank"><span style="color:#0033ff;">http://www.cs.waikato.ac.nz/~ml/weka/index.html</span></a></p>
<p class="texto"><strong>2. TreeMap</strong></p>
<p class="texto">O TreeMap é um software que fez a geração de mapas de árvores (TreeMaps). Estes mapas são muito interessantes para a visualização de uma grande quantidade de dados hierárquicos, pois apresentam as informações baseados em retângulos coloridos de acordo com algum atributo das informações. Este tipo de visualização de informação permite uma mineração visual dos dados, tornando mais fácil a descoberta de conhecimento a respeito dos dados. A Figura 2 apresenta o TreeMap com os dados a respeito de uma votação americana. Notem que o estado da Califórnia é apresentado como o maior retângulo e na cor azul. Várias opções permitem customizar a aparência e a navegação dos dados.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura02.gif?w=530&#038;h=374" alt="TreeMap" width="530" height="374" /></p>
<p class="texto"><span style="color:#669900;">Figura 2. Visualizando dados de uma votação americana com o TreeMap.</span></p>
<p class="texto" style="text-align:left;">Link para o download do TreeMap: <a href="http://www.cs.umd.edu/hcil/treemap/demos/" target="_blank"><span style="color:#0033ff;">http://www.cs.umd.edu/hcil/treemap/demos/</span></a></p>
<p class="texto"><strong>3. Mangrove</strong></p>
<p class="texto">O Mangrove é um software para Windows apenas que permite a geração e navegação de árvores de decisão. Estas árvores de decisão são úteis para a detecção de padrões e correlações nos atributos dos dados. Vale a pena dar uma navegada pela árvore gerada, e identificar quais são os padrões que os dados apresentam. A Figura 3 apresenta uma árvore de decisão gerada pelo Mangrove, a partir de dados referentes a informações de um zoológico. Além da geração da árvore de decisão, há também como customizar alguns parâmetro do algoritmo e aplicar níveis de Zoom na árvore gerada.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura03.gif?w=530&#038;h=359" alt="Mangrove" width="530" height="359" /> </p>
<p><span style="color:#669900;">Figura 3. Árvore de decisão gerada pelo Mangrove.</span></p>
<p class="texto" style="text-align:left;">Link para o download do Mangrove: <a href="http://www.tetris1d.org/zigah/mangrove/" target="_blank"><span style="color:#0033ff;">http://www.tetris1d.org/zigah/mangrove/</span></a></p>
<p class="texto"><strong>4. Mondrian</strong></p>
<p class="texto">O Mondrian é um excelente servidor OLAP de código livre escrito em Java. Além de permitir a manipulação de cubos de dados através de um browser o Mondrian possui uma extensa API (Application Program Interface) para a manipulação dos seus objetos. Suporte a MDX, geração automática de gráficos e exportação em PDF e arquivo XLS são algumas das suas muitas funcionalidades.</p>
<p class="texto">A Figura 4 apresenta o browser FireFox navegando em um cubo montado no Mondrian. Este cubo de dados que aparece na Figura 4 é o mesmo cubo de dados de telefonia que foi apresentado aqui no iMasters por meio da série de  colunas onde expliquei como montar um cubo de dados no Analisys Services.</p>
<p class="texto"> <img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura04.jpg?w=530&#038;h=389" alt="Mondrian" width="530" height="389" /></p>
<p class="texto"><span style="color:#669900;">Figura 4. Cubo de dados de Telefonia implementado no Mondrian.</span></p>
<p class="texto" style="text-align:left;">Link para o download do Mondrian: <a href="http://mondrian.sourceforge.net/" target="_blank"><span style="color:#0033ff;">http://mondrian.sourceforge.net/</span></a></p>
<p class="texto"><strong>5. DBDesigner</strong></p>
<p class="texto">O DBDesigner é uma ferramenta de código livre que serve para a modelagem de dados, mais especificamente para a elaboração de diagramas MER (Modelo Entidade Relacionamento). Dentre as suas principais vantagens, podemos citar a fácil geração de código SQL do modelo criado, a separação dos modelos Físico e Lógico, a sua simples interface gráfica e a sua portabilidade. A Figura 5 mostra um modelo multidimensional desenhado no DBDesigner.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura05.jpg?w=531&#038;h=485" alt="DBDesigner" width="531" height="485" /> </p>
<p class="texto"><span style="color:#669900;">Figura 5. Modelo Multidimensional desenha no DBDesigner.</span></p>
<p class="texto" style="text-align:left;">Link para o download do DBDesigner: <a href="http://www.fabforce.net/dbdesigner4/" target="_blank"><span style="color:#0033ff;">http://www.fabforce.net/dbdesigner4/</span></a></p>
<p class="texto"><strong>6. SQLUniform</strong></p>
<p class="texto">Recentemente, recebi um e-mail solicitando informações sobre uma ferramenta que fosse um front-end no Linux para a administração do SQL Server. Respondi que não conhecia nenhuma, mas o leitor do iMasters e Desenvolvedor Ian Raphael me sugeriu o SQLUniform, um administrador de mais de 20 tipos diferentes de bancos de dados desenvolvido em Java. Para acessar o SQL Server pelo Linux, o SQLUniform utiliza a biblioteca FreeDTS e também pode trabalhar com drivers ODBC ou JDBC.</p>
<p class="texto">O SQLUniform também permite a exportação e importação de dados CVS, dentre outras funcionalidades. A Figura 6 mostra o SQLUniform em ação sendo executado em na interface gráfica KDE do Linux e conectado a um servidor MySQL.</p>
<p class="texto"> <img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura06.jpg?w=492&#038;h=330" alt="SQLUniform" width="492" height="330" /></p>
<p class="texto"><span style="color:#669900;">Figura 6. SQLUniform administrando uma base de dados do MySQL</span>.</p>
<p class="texto" style="text-align:left;">Link para o download do SQLUniform: <a href="http://www.sqluniform.com/" target="_blank"><span style="color:#0033ff;">http://www.sqluniform.com/</span></a></p>
<p class="texto"><strong>7. Pajek </strong></p>
<p class="texto">O Pajek é um programa que permite criar, editar e manipular grafos (e não gráficos) de todos os tamanhos. Além disso, ele conta com alguns algoritmos e heurísticas implementadas para facilitar a descoberta de informações. Muito útil para quem trabalha com dados provenientes de redes de relacionamento, como o Orkut, e também com dados hierárquicos. A Figura 7 apresenta um grafo conectado gerado a partir de dados contidos em um arquivo texto.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura07.jpg?w=524&#038;h=383" alt="Pajek" width="524" height="383" /></p>
<p class="texto"><span style="color:#669900;">Figura 7. Grafo conectado gerado pelo Pajek</span>.</p>
<p class="texto" style="text-align:left;">Link para o download do Pajek: <a href="http://vlado.fmf.uni-lj.si/pub/networks/pajek/" target="_blank"><span style="color:#0033ff;">http://vlado.fmf.uni-lj.si/pub/networks/pajek/</span></a></p>
<p class="texto"><strong>8.  The R Project</strong></p>
<p class="texto">O Software chamado ‘The R Project’, ou simplesmente R como é mais conhecido, é um analisador estatístico muito poderoso. Quem precisa trabalhar com dados científicos pode contar com uma ferramenta muito flexível e robusta, a ponto de, em alguns casos, poder substituir o famoso MatLab. Correlação multivariada e testes chi-quadrado são apenas algumas das análises que esta ferramenta para fazer. A Figura 8 apresenta algumas das janelas do R no Mac que podem ser utilizadas durante a manipulação de dados com o R.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura08.gif?w=530&#038;h=353" alt="The R Project" width="530" height="353" /></p>
<p class="texto"><span style="color:#669900;">Figura 8. Algumas das janelas do R sendo executadas no Mac.</span></p>
<p class="texto" style="text-align:left;">Link para o download do R: <a href="http://www.r-project.org/" target="_blank"><span style="color:#0033ff;">http://www.r-project.org/</span></a></p>
<p class="texto"><strong>9. DbGen</strong></p>
<p class="texto">O DBGen é um gerador de dados para testes desenvolvido pelo Grupo de Base de Dados e Imagens do ICMC da USP. Ele permite a geração e análise de diversos tipos de dados utilizados para carregar uma base de dados de teste. A Figura 9 mostra a geração de alguns números aleatórios no DbGen.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura09.jpg?w=401&#038;h=401" alt="DbGen" width="401" height="401" /> </p>
<p class="texto"><span style="color:#669900;">Figura 9. Geração de dados aleatórios no DBGen</span>.</p>
<p class="texto">Para fazer o download do DBGen, antes é necessário o cadastro no site do Grupo de Base de Dados e Imagens.</p>
<p class="texto" style="text-align:left;">Link para o download do DBGen: <a href="http://gbdi.icmc.usp.br/downloads.php" target="_blank"><span style="color:#0033ff;">http://gbdi.icmc.usp.br/downloads.php</span></a></p>
<p class="texto"><strong>10. Agata Report</strong></p>
<p class="texto">Vários softwares permitem a geração de relatórios customizada pelo usuário. O Agata Report é um projeto de código livre nacional que permite, com uma grande variedade de recursos, a geração de relatórios e gráficos a partir de diferentes bases de dados. Para quem trabalha com o Crystal Reports e o Reporting Sercices, o Agata Report é ótima alternativa de baixo custo. A Figura 10 mostra uma janela de configuração de um relatório no Agata Report.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura10.jpg?w=530&#038;h=397" alt="Agata Report" width="530" height="397" /> </p>
<p class="texto"><span style="color:#669900;">Figura 10. Janela de configuração de relatórios do Agata Report.</span></p>
<p class="texto" style="text-align:left;">Link para o download do Agata Report: <a href="http://www.agata.org.br/" target="_blank"><span style="color:#0033ff;">http://www.agata.org.br/</span></a></p>
<p class="texto"><strong>11. iXEdit XML Editor</strong></p>
<p class="texto">O iXEdit é um editor de XML desenvolvido em Java bem simples. Ele é útil para a manipulação de arquivos XML com muitas tags e propriedades, além de fornecer suporte para a verificação e validades frente a DTDs e Schemas. A Figura 11 mostra o iXEdit manipulando uma tag de um arquivo XML.</p>
<p class="texto"><img src="http://setur.files.wordpress.com/2008/04/sl-para-bd_figura11.jpg?w=530&#038;h=395" alt="iXEdit XML Editor" width="530" height="395" /> </p>
<p class="texto"><span style="color:#669900;">Figura 11. O editor de arquivos XML iXedit manipulando um arquivo XML.</span></p>
<p class="texto" style="text-align:left;">Link para o download do iXEdit XML Editor: <a href="http://ixedit.sourceforge.net/" target="_blank"><span style="color:#0033ff;">http://ixedit.sourceforge.net/</span></a></p>
<p class="texto"><strong>12. Lucene</strong></p>
<p class="texto">O Lucene é um biblioteca escrita em Java que contém um mecanismo para se trabalhar com full-text search. De acordo com os desenvolvedores, esta biblioteca apresenta alto-desempenho e possui muitos recursos para a manipulação e pesquisa de diversos tipos de texto. Esta biblioteca deve ser utilizada nas aplicações desenvolvidas em Java para fornecer a funcionalidade de pesquisa full-text.</p>
<p class="texto" style="text-align:left;">Link para o download do Lucene: <a href="http://lucene.apache.org/java/docs/features.html" target="_blank"><span style="color:#0033ff;">http://lucene.apache.org/java/docs/features.html</span></a></p>
<p class="texto">Com estas ferramentas livres apresentadas neste post, o desenvolvedor ou DBA tem várias alternativas para tornar o seu trabalha do dia-a-dia mais fácil e produtivo. Vale lembrar que muitos outros tipos de ferramentas livres que auxiliam o trabalho de quem manipula banco de dados ainda existem e estão esperando para serem descobertas e utilizadas.</p>
<p class="texto">Por hoje é só pessoal, tenham todos uma maravilhosa semana.</p>
<p class="texto" style="text-align:center;"><em>&#8220;Porque tu, SENHOR, és a minha lâmpada; e o SENHOR ilumina as minhas trevas.&#8221;</em> <span><a href="http://bibliaonline.com.br/acf/2sm/22/29+" target="_blank"><span style="color:#000000;">2 Samuel 22:29</span></a></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WEKA Filters and Attribute Selection]]></title>
<link>http://dataminingntua.wordpress.com/2008/04/04/weka-filters-and-attribute-selection/</link>
<pubDate>Fri, 04 Apr 2008 17:03:36 +0000</pubDate>
<dc:creator>ΓΔ 047</dc:creator>
<guid>http://dataminingntua.wordpress.com/2008/04/04/weka-filters-and-attribute-selection/</guid>
<description><![CDATA[weka-filters.pdf weka-select-attributes.pdf]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://dataminingntua.wordpress.com/files/2008/04/weka-filters.pdf" title="weka-filters.pdf">weka-filters.pdf</a></p>
<p><a href="http://dataminingntua.wordpress.com/files/2008/04/weka-select-attributes.pdf" title="weka-select-attributes.pdf">weka-select-attributes.pdf</a></p>
<p><a href="http://dataminingntua.wordpress.com/files/2008/04/weka-filters.pdf" title="weka-filters.pdf"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using WEKA in MATLAB]]></title>
<link>http://dataminingntua.wordpress.com/2008/03/31/using-weka-in-matlab/</link>
<pubDate>Mon, 31 Mar 2008 13:31:38 +0000</pubDate>
<dc:creator>ΓΔ 047</dc:creator>
<guid>http://dataminingntua.wordpress.com/2008/03/31/using-weka-in-matlab/</guid>
<description><![CDATA[Using Weka in Matlab]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=19260&#38;ref=rssfeed&#38;id=mostDownloadedFiles">Using Weka in Matlab</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
