-
when running the frameworks on my benchmark suite (of two tasks) I am running into several issues...is there are current known issue executing the frameworks? running the single line "runbenchmark.py framework openml/s/###" with the available frameworks is either not executing at all, or in some cases executed fold 0 on the first task but never gets to the second task in the suite. The following error keeps occurring.... AttributeError: 'DataFrame' object has no attribute 'append' Thank you again for this contribution, we are currently working on a research paper and comparing these frameworks with your tool will be extremely beneficial. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
I am not aware of any issues, if you can provide me with a MWE (which version are you running, what are the tasks, what command are you invoking, do you have custom configurations). Try to trim it down as much as possible to the out-of-the-box setup. With that info I might be able to help you further. |
Beta Was this translation helpful? Give feedback.
-
Hello Pieter, Thank you once again for your prompt response. Your recommendations appear to have worked. You were correct, my pandas was >2.0. And after cleaning up the rf environment i successfully executed the rf benchmark and have a full set of results :) I am in the process of trying the other frameworks now (hopefully I don't run into any more issues). Thank you once again. I really appreciate what you and your colleagues have delivered here. I feel that my research using your tool is going to make some significant contributions to the field of gambling studies. |
Beta Was this translation helpful? Give feedback.
-
Making some suggestions for hotfixes here, unfortunately couldn't try them myself:
|
Beta Was this translation helpful? Give feedback.
Thanks! It does work for me (on a fresh install), so let's see if we can figure out why it doesn't work on yours. I think the two errors have two different causes.
It looks like
psutil
wasn't installed in your RandomForest environment, even though it should have been. Please clean up the randomforest environment by removing thevenv
and.setup
directories inframeworks/RandomForest
, and then run the command again in setup mode by adding--setup=only
to your command. The last line of output should read:If that is not the case, please post the results here. If that is the case, you can probably just run the original command and it s…