NARCL 0.4.1
[ Posted by Urban Hafner ]
This release just adds a better README, actually a README that should be useable.
Download: narcl-0.4.1.tar.bz2
Have fun.
[ Posted by Urban Hafner ]
This release just adds a better README, actually a README that should be useable.
Download: narcl-0.4.1.tar.bz2
Have fun.
[ Posted by Urban Hafner ]
This is the release of version 0.4.0 of NARCL.
The tarball can be found here: narcl-0.4.0.tar.bz2.
The darcs repository is at http://www.cip.ifi.lmu.de/~hafner/darcs/narcl
This release is almost a complete rewrite of the whole library. The main purpose was the speedup of the rule mining. I have come quite far in this direction but I am by no means finished with it.
The aim is to allow association rule mining of data sets with at least 125,000 transactions and about the same number of items in reasonable time.
Have fun with the program and of course feedback is welcome.
[ Posted by urban ]
So you want to know what it’s all about this language with the weird syntax (and I’m not talking about Perl here :))? Then Practical Common Lisp by Peter Seibel might be just the right book for you.
It gives you everything you will need to start your lisp hacking. And contrary to many other programming language books it’s really a book about practical stuff. And if you don’t want to spend the money for the dead tree version just yet, you can get the complete text from the books website.
[ Posted by urban ]
This is the announcement for NARCL version 0.1.0.
NARCL stands for Negative Association Rules in Common Lisp. As the name suggests it is a program to find association rules and it is written in Common Lisp.
At the time where I started writing it no program existed that could compute negative association rules. But I may eventually need a program like that in the future.
Well, its version is 0.1.0 so you can imagine. What works is the computation of negative and positive association rules on a given set of transactions. But it is very slow, due to the use of rather inefficient data structures. Nonetheless it might be useful to some people, so here it is.
The code is licensed under the LLGPL which is essentially the LGPL with some Lisp specific additions and clarifications.
You can download the source as a compressed tar ball from my web site:
[ Posted by urban ]
This project is actually two projects at once:
You may ask why I would want to write yet another Common Lisp implementation. It’s of course true that there are enough implementations already out there and it remains to be seen if I will be able to actually complete the thing. After all Common Lisp is a huge language. But I consider myself a hacker (even though I don’t qualify as a geek :)) and I really want to write a compiler myself.
And that’s where the second goal comes into play. Why not use the virtual machine of a already parallel language? This would probably mean that there is already support for parallelism in the VM. I don’t know how much easier that will make the implementation but it’s a nice excuse :)
The first step is already made. I’ve found a name for it: Hummingbird. It doesn’t have any deeper meaning it’s just a name that I like. The next step will be to finish reading ‘Concepts, Techniques, and Models’ to have a good grounding in parallel programming. Then Lisp in Small Pieces is waiting in one of my shelves to be read. Meanwhile I will look at the VMs of parallel languages out there (like Mozart and Alice, which is based on SEAM) and watch what other Parallel Lispers are doing (like Dirk Gerrits Erlisp project).
Even though my plan might sound nice to you, it has several flaws:
So why do I write a blog entry about it then? Well, firstly because writing things down helps me to make them more clear and secondly because you might like this idea and start implementing it. Even though I’d like to implement it myself I’d be happy to just play with the result, too.