From: Travis B. <tr...@us...> - 2003-06-15 05:16:59
|
Adriana, The first thing to keep in mind is that IGLU is a set of tools, not an application. It implements basic building blocks of information retrieval programs, but is not a program itself. To use IGLU, you'll have to write software tying the pieces together to make them do what you want. The basic idea is to get the compiled jar file and put it in your class path. Then create instances of various Document types from whatever source data you have. Then create the StopList instance and apply the filter to all your documents. You can then feed them into the VectorCreator classes to get your TFIDF values. The place to start is to read the javadoc for the iglu.ir package. Focus on the Document, VectorCreator, and DocumentFilter interfaces and their descendants. If you can see how each of these class types works, then you can use the package. Just drop me a note if you need more help. Travis PS: I'm sending this reply to the iglu-users mailing list and to you. You're email address has been removed from the reply. --- Adriana - IG wrote: > Dear Travis Bauer, > > I´m trying to use Iglu , but I don´t know how > exactly to do this. > Could you help me please? > > I need to remove stopwords and do the stemming, and > then, I need to make > the Tfidf (weight) for the texts. > The texts are selected by user. > > Please, I wait for answers. > > Adriana. > > |