Latex Maths

Showing posts with label clojure. Show all posts
Showing posts with label clojure. Show all posts

Tuesday, August 24, 2010

Why GUIs are Important in AI Design

what IDE do you use to develop software?  i hope it's not exclusively command-line tools.  modern IDE's provide a lot of convenience which improves the quality and speed of development: syntax highlighting, code completion, visual debugging, etc

so if you're using an IDE like NetBeans or Eclipse, then your interface to Genifer, for example, is ALREADY through a GUI (though indirectly).

if you understand this, you'll see why i think it's important to consider the GUI's we use to develop AI. 

btw some people need some visualization to think.  i consider your comment that GUIs are only important after the 'back end' is finished to be "logic-based thinking chauvinistic"

On 08/24/2010 04:52 PM, Abram Demski wrote:
I am currently using text editor command-line, because Lispers typically fall back on Emacs and I am not very interested in that... :P
check this out:  http://www.pawfal.org/fluxus/


I think it's sad that there are not better Lisp environments out there... I used to use Powerlisp, which was nice in many ways but too old to be stable (and no longer in development).
for the most modern LISP-like environment that i'm aware of, i suggest to look at NetBeans + Clojure

http://www.enclojure.org/screenshots

I dislike project-oriented environments, which means almost all IDEs... :P
(shocked!)

For Lisp, I'd love an environment which was closer to an "edit and save the memory" model rather than "edit and save and execute text". ("Save the memory" meaning "save a text file containing defuns and setqs to restore the current memory state.) Obviously for large software projects you;d need more than this in terms of project management, but for rapid prototyping, that'd be nice. Imho.
well, this is our opportunity to build that!

On 08/24/2010 05:30 PM, Abram Demski wrote:
The SOAR group recently did some interesting IDE work, too... basically, rather than really editing text, they now edit database entries corresponding to SOAR rules (which looks like text while you're editing it). I don't know a whole lot about it, though.
thanks for the pointer, seems interesting. here's what i could find on SOAR's IDE:
if you can send any more information about it, i can take a closer look

also check out jACT-R, a java imlementation of the ACT-R cognitive models:

    http://anthonymharrison.com/wp/wp-content/uploads/2008/04/tooltip.jpg
    http://jactr.org
Fluxus looks interesting...

If we can built something like that, that would be great.
Fluxus (written in C/C++) embeds its own LISP engine which is tightly integrated with an OpenGL draw loop.

JOGL provides a native OpenGL interface for Java.


in my latest commit i added a simple browser panel:

http://code.google.com/p/genifer/source/detail?r=418f1766575b7ebda60b1929163210904325e4fc

which shows facts and rules.  it uses different colors and font sizes to show the relative probability of each fact.

here is a screenshot running from YKY's latest test group:


Thursday, July 1, 2010

Porting Genifer LISP to Scala or Clojure, July 1st

Per YKY's instructions, I am getting ready to port Genifer's existing LISP code located at...

http://launchpad.net/genifer

...to either Scala or Clojure, JVM languages which can inter-operate with Java.  In doing this I hope to provide a framework that will ultimately unify AI libraries like Genifer, dANN, Neuroph, and others.


_KY_: The porting is 3 steps:
  1. unification algorithm
  2. best-first search
  3. substitution management
  4. optional: [ forward chaining ]
  5. optional: [ abduction ]

YKY recommends that I review:
Code will be commited to Genifer's Google Code repository.