Jonathan Shore
Jonathan Shore
I am at a loss as to why you are getting this error. requirements.txt is definitely part of the project. You might want to try to clone the repository and...
As for accessing BSI values added a return to the `eval` method, which will return a dataframe containing bars and BSI value: ``` metrics = obj.eval (df) metrics.bsi ``` I...
I added the return in eval just this morning, so you would need to pull / reinstall the package. I will check your example later today when I have a...
I just checked the above code you provided. With the modification I made this morning, `metrics` does indeed contain the result data frame and not `None`. Hope that solves the...
added, you can reinstall again.
would love to see a resolution to this. Not being able to put the registrations with each class header is problematic. When in multiple headers inevitably creates a problem due...
@krassowski have you tried rendering with mpld3 in dash? I have attempted the following (within a callback to fill a div child target): ``` @app.callback(Output('graph1','children'), [Input("tenor1", "value")]) def update_graph(value): Tbase...
Thanks! that is useful. I "solved" previously by rendering 2 ggplots and pasting together with a multi-panel figure. I wonder whether it makes sense to allow for for thematic or...
I also need this facility (typed GP sub-trees). A cross-over operator will do the wrong thing when there is more than one "type" involved. DEAP (the python GP project), presents...
I was not think of of Type in the sense of java types, rather that may have Ops and Leaf nodes that belong to a different subset of evolutionary operators...