stevenstetzler

Results 4 comments of stevenstetzler

I've run into this issue as well and this is my solution: Replace ``` data = self.get_json_body() for key, value in data.items(): if hasattr(spawner, key): setattr(spawner, key, value) ``` with...

I think I found a hint toward the issue by doing a diff on the container inspect outputs. It looks like the `PATH` environment variable gets messed up in container...

Yeah, I can help with this. I think the two solutions I proposed are all that can be done: 1) if the flux index goes past the length of the...

If you pass in a time series with just a single value, it will break: ```python import feets fs = feets.FeatureSpace(only=[ 'FluxPercentileRatioMid20', 'FluxPercentileRatioMid35', 'FluxPercentileRatioMid50', 'FluxPercentileRatioMid65', 'FluxPercentileRatioMid80']) ts = [[0], [1]]...