Irek M
Irek M
I used the complete example not from GitHub but from http://maxpumperla.com/hyperas/ It doesn't work in recent Keras, and only makes confusion, better fix it or remove the website.
### What happened? ``` panic: fatal: A failure has occurred: Unexpected multiple elements in array with MaxItems=1 goroutine 114 [running]: github.com/pulumi/pulumi/sdk/v3/go/common/util/contract.failfast(...) /home/runner/go/pkg/mod/github.com/pulumi/pulumi/sdk/[email protected]/go/common/util/contract/failfast.go:23 github.com/pulumi/pulumi/sdk/v3/go/common/util/contract.Failf({0x936a057, 0xc00097f680}, {0x0, 0x7b3c920, 0xc002eb4cf0}) /home/runner/go/pkg/mod/github.com/pulumi/pulumi/sdk/[email protected]/go/common/util/contract/fail.go:30 +0xd4 github.com/pulumi/pulumi-terraform-bridge/v3/pkg/tfbridge.MakeTerraformOutput.func1({0xa43e6e8,...
Fixing Helm chart is easy: add HELPER_IMAGE with env var to point to the proper address of busybox. But additionally imagePullSecrets has to be added to the create-xxxx pods generated...
I wanted to change something in this project, but I couldn't even build it and publish artifacts to maven repo to reuse in my other projects, because this project uses...
Currently I have a huge dilemma: - backport all my code to TF 1, in order to use Stable Baselines and my code in one project - or use something...
Java 8 code contains a lot of stuff like ``` optional.map(Obj::x).map(it -> it.y()).orElse(z()) ``` it would be nice to have on the screen just: ``` optional?.x()?.y() ?: z() ``` Similarly...
So for example `substringAfter(string, ".")` becomes `string.substringAfter(".")` just like in Kotlin for example
After using Tensorflow or Keras, understanding of ND4J or DL4J is quite possible (although not easy), but with DataVec unfortunately I have lots of problems: - completely different design than...
I have ``` "features": { ... "./local-subdir1": {}, "./local-subdir2": {} } ``` `devcontainer build` supports this syntax. Devpod doesn't, it just prints `20:08:56 info Creating devcontainer...` and exits immediately
Instead of a nested object (e.g. `dict` or `list`) I get a string, which although looks slightly like JSON, isn't valid for `json.loads` (it's probably result of calling `str(...)` on...