Alex Pearwin

Results 12 comments of Alex Pearwin

For classifiers that only compute statistics on ensembles of events whilst fitting, like decision trees, I would hope that an implementation would accept negative weights, rather than doing `assert (weights...

Yes, negative weights certainly _can_ make things go bad, but in the case of very low sample sizes sWeights also don't make much sense, they only give 'reasonable' results with...

> Well, in such case you should check for sum in each particular leaf of the tree (since we aggregating over samples in a leaf). Yes, exactly. The check should...

How do you mean “gap”? Do you mean that the grey bar in the top left, containing the window controls, doesn't extend all the way to the far right? That's...

Do you mean “normally” as in ‘normally in ChitChat’ or ‘normally in OS X applications’?

I also saw this error running a container on an M1 laptop. Seems to be related to [this SO question](https://stackoverflow.com/q/69573312/596068). I can run the ARM and x86 images on the...

Debugging further, I tried running the steps in the build script on the ARM container directly. ``` $ docker run --rm -it quay.io/pypa/manylinux_2_24_aarch64 sh # curl -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key...

These are these differences between the two build scripts (`build_manylinux2014 .sh` is used for x86_64 and `build_manylinux_2_24 .sh` is used for arm64): ```diff diff --git a/scripts/build/build_manylinux2014.sh b/scripts/build/build_manylinux_2_24.sh index 0e87bd54..d83c8414 100755...

@dvarrazzo I [tried updating that script](https://github.com/psycopg/psycopg2/issues/1360#issuecomment-956238280) but only managed to get one of the versions updated. Quoting: ``` $ docker run --rm -v $(pwd):/src \ -e PLAT=manylinux_2_24_aarch64 \ -e PACKAGE_NAME=psycopg2-binary...

In case others were similarly confused, this issue prevents folks using a purely lua-based Neovim configuration. A lua-based configuration starts with an `init.lua` file and Neovim will not start if...