I just read a fascinating paper: http://www.psy.cmu.edu/~ckemp/Papers/kempt08.pdf

In my opinion it takes the whole area of machine learning to a completely new level because it flexibly discovers the structure of data (and doesn't only try to find a best fit for an existing structure).

The code is also available: http://www.psy.cmu.edu/~ckemp/code/formdiscovery.html

I tried to do a few experiments of my own - but unfortunately I don't possess Matlab. I tried it with Octave but it only produced all kinds of error messages, which I don't understand (I am no expert on these programs).

Could anybody perhaps have a quick look if these problems can be solved easily (or at all)? Perhaps the solution will be an easy one (this is my hope after all).

This would really be a big help! I am very much looking forward to trying a few data sets of my own.

link|improve this question

1  
Could you perhaps post the error messages? – Jonas May 20 '11 at 11:22
@Jonas: I don't know if this is helpful but here they are: Der Befehl "which" ist entweder falsch geschrieben oder konnte nicht gefunden werden. demo_chain_feat chain error: display: not defined for class "char" error: called from: error: C:\Octave\3.2.4_gcc-4.4.0\share\octave\3.2.4\m\general\display.m at line 36, column 3 error: runmodel.m at line 17, column 1 error: masterrun.m at line 64, column 38 – vonjd May 20 '11 at 12:27
@vonjd I didn't run through all code exceptions, but from the very few ones I checked, it is possible to trace back all errors (yes, one by one :-) and get it work with Octave, or close to. For example, the first error you reported has to do with display method not defined for a character variable. Replace with disp and it works. Then, the program will throw another error when trying to create subdirectories... I'm afraid I cannot help more, but I do think spending some time solving those compatibility bugs would be profitable to your understanding of Octave and this particular toolbox. – chl May 20 '11 at 15:14
@chl: in the main file masterrun.m there is no "display", only "disp" and I thought the display.m is an own file of Octave. I have no clue how this one is called. – vonjd May 20 '11 at 16:30
1  
As far as the results go, this has been known in computer vision at least for more than 8 years... dating back to Ivanov's use of of stochastic context-free grammars for action recognition, and subsequent development of graph-cutting techniques for detection of community structure in graphs. This is a psychology paper, and as is too often the case, the author was likely unfamiliar with prior machine learning work from other communities. In 2008, this would not be good enough to be published in any of the major vision conferences. There may be better codes available... – EMS Jun 2 '11 at 0:20
show 3 more comments
feedback

migrated from stats.stackexchange.com May 26 '11 at 6:53

This question came from our site for statisticians, data analysts, data miners and data visualization experts.

1 Answer

up vote 2 down vote accepted

I didn't look into the source code, but if you are going to convert it, these links might help:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.