Joe Romano
Joe Romano
All of the individual dependencies can be installed on the Raspberry Pi 4 (I have a 2GB model - the 4GB or 8GB model would definitely be better). The main...
Agreed. I'm currently working on building the dependencies on an x86_64 version of Ubuntu using aarch64 cross-compiling tools. If this works, we can try to distribute the compiled Python packages...
PR #305 provides initial support for building on Raspberry Pi. As requested above, there are separate Dockerfiles and a separate `docker-compose` configuration file for building `arm64`-compatible PennAI. The Docker application...
Hi @ankitrajixr, these may have previously been found to not play well with other parts of TPOT, and that may be why they are not included by default. However, you...
Do you see the same issue with non-NN TPOT? E.g., if you omit `config_dict='TPOT NN'`?
It seems to be an issue when templates are used in conjunction with `config_dict='TPOT NN'`. When I run your code without a template it runs fine, and the error persists...
Hi @hanshupe, this is likely not possible because different scoring functions have fundamentally different meanings, and are used to tell different things about the performance of a model. E.g., F1-score...
My apologies, I misunderstood your question. I mistakenly thought you were referring to the overall scoring function used to evaluate a pipeline rather than the scoring function used within the...
Just to clarify, does this work when you provide a custom configuration dictionary containing the sample configuration you gave in your initial question?
Hi @levedev, there are a couple of initial issues I notice: First, your model is missing a number of methods/attributes that are needed to be compliant with the Scikit-Learn API....