Jul 25
I recently got the good news that one of my papers was accepted by a journal not to be named, but is indexed by SCI and other well known indexing services. Well, at least I think it was accepted. The email was rather vague and I am not 100% certain if the paper was actually [...]
Posted in Research by: David
1 Comment
May 29
In continuation of my last post about Encoding.GetEncoding, I found that “cp932″ will work for getting shift-jis, which means that I just have to change “shift-jis” to “cp932″ in my code and in all of my configuration files and I should be OK.
update: After checking in Windows, “cp932″ does not exist. This means I must [...]
Posted in Mono, Research by: David
No Comments
May 28
I ran into another small difference that is a bit annoying and I am not for sure if it will become a big deal or not. When using Encoding.GetEncoding in mono with “SHIFT-JIS” I get the following…
Unhandled Exception: System.NotSupportedException: Encoding name `SHIFT-JIS' not supported
at System.Text.Encoding.GetEncoding (System.String name) [0x00000]
at KantLibrary.Translation.ExciteJapanTranslator.Translate (System.String sourceText, Code from, Code to) [...]
Posted in Mono, Research by: David
No Comments
May 25
Version 0.5 of the OAR library is now available for download here. It contains a lot of new code and some updates and bug fixes.
Posted in Information Retrieval by: David
No Comments
May 24
I happen to run into a difference in implementation between the Mono project’s implementation of .Net and Microsoft’s. It seems that escaped strings are handled differently in Regex.Replace when the escaped string is the replacement string. What does this mean? The following code …
string replaced = Regex.Replace( "I like the backslash", "backslash", @"\\" );
Console.WriteLine(replaced);
will output [...]
Posted in Mono, Research by: David
No Comments
May 23
Recently, I have started to port my libraries (Oar, KANT, etc.) to be able to compile using Mono under Ubuntu. The Oar library works with no problems, which made me happy. The original version of my KANT library, which was done using .NET 1.1 and is in use by various projects at my university, would [...]
Posted in Research by: David
No Comments
Apr 17
Title: Single Document Keyword Extraction for Internet News Articles
Submitted To: Information Processing & Management
Status: Under Review (04/17/2007)
Title: Semi-Automatic WordNet Based Emotion Dictionary Construction
Submitted To: IEEE Transactions on Systems, Man and Cybernetics Part A
Status: Awaiting Editor Assignment (04/17/2007)
Title: Category Classification and Topic Discovery of Japanese and English News Articles
Submitted To: Electronic Notes in Theoretical Computer Science [...]
Posted in Research by: David
No Comments
Apr 17
Version 0.4 of the Oar Information Retrieval Library has been uploaded. This release includes classes for accessing http resources, keyword extraction algorithms and more.
Posted in Information Retrieval by: David
No Comments
Dec 18
Version 0.2 of the Oar Information Retrieval Library has been posted. It includes many new changes and additions including, k-Nearest Neighbor and Naive Bayesian Classifiers.
Posted in Information Retrieval by: David
No Comments
Dec 18
GaLib has been updated to version 0.2. The new version includes a new method in the Chromosome class and some new operators and type specific implementations.
Posted in Evolutionary Computing by: David
No Comments