-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improving dependencies in flows #12
Comments
From @DraXus on November 26, 2014 12:18 From the implementation point of view I don't know how feasible is to know the package of a class in Java though. |
You can get the name of a class's package using Java introspection. Only On Wed Nov 26 2014 at 1:18:58 PM Manuel Martín [email protected]
|
From @DraXus on December 6, 2014 13:2 I did some modifications in the Weka package and I was able to compile it. However, when I install it using the package manager in Weka 3.7.11 it says that it's not compatible. I guess that some black magic is doing behind the scenes to create the current OpenWeka package, so probably additional steps are needed. Nevertheless, I add here these lines from WekaAlgorithm.create() for my own record :) Package packageOfClassifier = classifier.getClass().getPackage();
if (packageOfClassifier!=null){
dependencies += "; " + packageOfClassifier.toString() + "_" + packageOfClassifier.getImplementationVersion();
} |
From @DraXus on November 26, 2014 12:17
Currently, flow dependencies are limited to the software version. However, some of them also require additional dependencies. For example, flow 191 requires also the installation of multiBoostAB from the package manager.
Copied from original issue: openml/OpenML#161
The text was updated successfully, but these errors were encountered: