Search
The Way of the Software Engineer

Archive for the 'java' Category

Applying JOONE to Real-World Data

Posted by admin on June 6th, 2009

JOONE is a toolset used to build and run neural networks in Java.  To demonstrate its capability, I’ve built a simple supervised network and trained it on a common data set used for other machine learning projects.  By using a common data set, comparisons can be made between the different approaches.
The data set was published [...]

Java 1.6 on OS X

Posted by admin on September 21st, 2007

Apple has a build of java 1.6 available through the Apple Developer Connection site. The build is pretty recent (1.6.0-dp-b88-34) and includes a complete JDK. The package can be installed through the normal GUI method, or by the installer command line utility: `sudo installer -pkg JavaSE6Release1.pkg -target “/” `. However, once this [...]

Java and XML

Posted by admin on September 17th, 2007

A fellow engineer asked me about parsing XML in Java and I handed them this utility class I wrote a while ago. The class fit her need so well, she suggested I post it for others to use. It’s only a few lines of code, but it is useful. I find the [...]