Josh

Results 13 issues of Josh

The hosts page is super helpful for identifying issues across Bazel builds in a set of CI host machines. Whilst the global filter is great, it would be incredibly useful...

Using mutable types (e.g. [], {}) for default arguments can lead to unexpected behaviour as detailed [here](https://docs.python-guide.org/writing/gotchas/#mutable-default-arguments). I have done my best to locate all the occurances within the repository...

I feel like [this](https://github.com/raghakot/keras-vis/blob/668b0e11dab93f3487f23c17e07f40554a8939e9/vis/visualization/saliency.py#L188) makes more sense as `np.minimum`? Based on the comment above and the results it produces. An example can be seen below. Negative gradients are removed with...

Currently visualize_cam and visualize_saliency assume models follow the standard `keras.backend.image_data_format()` which leaves the function unusable with models which aren't using this. See [saliency.py L174](https://github.com/raghakot/keras-vis/blob/master/vis/visualization/saliency.py#L174) for an example of usage here....

[Fortnite Readme](https://github.com/winepak/applications/blob/master/com.epicgames.Fortnite/README.md) states `Need WoW64 support in Sdk/Platform` next to the 64 bit status. Is this now fixed as of https://github.com/winepak/winepak-sdk-images/issues/1 being closed?

When running kubecfg and jsonnet on the same definitions, jsonnet fails whilst kubecfg passes without issue. Should differences like this be cleared up so that both tools can be used...

This adds the option to add `--define jsonnet_port=scala` to bazel args to enable the use of the sjsonnet interpreter instead of the default go-jsonnet. Progress 18th Jun: Currently there are...

cla: yes

I recently came across databricks [sjsonnet](https://github.com/databricks/sjsonnet/) as an alternative interpreter for jsonnet, it is quite fast (faster than go in my use case) but is missing some features (std.slice is...

**Description of the problem / feature request:** Currently, the json_profile_merger logic simply takes time spans from the profiles and collates them for analysis. It would be nice if we could...

enhancement

The use of the [Directory](https://github.com/bazelbuild/remote-apis/blob/master/build/bazel/remote/execution/v2/remote_execution.proto#L697-L710) instead of [Tree](https://github.com/bazelbuild/remote-apis/blob/master/build/bazel/remote/execution/v2/remote_execution.proto#L1075-L1084) for [Push](https://github.com/bazelbuild/remote-apis/blob/master/build/bazel/remote/asset/v1/remote_asset.proto#L409-L441)/[Fetch](https://github.com/bazelbuild/remote-apis/blob/master/build/bazel/remote/asset/v1/remote_asset.proto#L287-L315) Directory leads to additional overhead on each Fetch which could instead be performed once by the client when pushing the...