James Myatt

Results 152 comments of James Myatt

I'm inclined to agree that paho should not take it upon itself to convert payloads, if possible. When it is absolutely necessary, it should be configurable as far as possible...

I had a little look at this and I thought that the easiest solution was probably to vendor the functions from `tfa.image` that are used in this framework. What do...

I think that: * `tfa.image.transform` -> Keras has a function that appears to match (https://github.com/keras-team/keras/blob/v2.14.0/keras/layers/preprocessing/image_preprocessing.py#L720) * `tfa.image.rotate` -> can be implemented via the transform function above (c.f. https://github.com/keras-team/keras/blob/68f9af408a1734704746f7e6fa9cfede0d6879d8/keras/layers/preprocessing/image_preprocessing.py#L987). Although the...

For what it's worth, as a lurker, I can see why you might want to exclude it from the default (i.e. walk-before-you-can-run), but I'm generally in favour of pre-commit for...

It's due to a conflict between the conda and pip constraints. For example, you can trigger this explicitly. ### environment.yml ```yaml channels: - conda-forge platforms: - linux-64 dependencies: - python...

I'm not sure that adding more information to the "lock" files would be helpful, since they're already too large to read and the information is basically already all in there,...

Is this fixed in [v0.12.2](https://github.com/EpistasisLab/tpot/releases/tag/v0.12.2)? Looks like https://github.com/EpistasisLab/tpot/pull/1331 is part of that release.

This would be free if RGB_Colourspace (and similar) were reimplemented using [attrs](https://www.attrs.org/en/stable/) or dataclass or similar. Would also reduce a lot of repeated and boilerplate code.