Dennis Keck

Results 19 comments of Dennis Keck

I can tell you one reason, why people are using `tensorboardX` instead of `torch.utils.tensorboard` is the direct support for writing the tfevent files to Google Cloud Storage. In `torch.utils.tensorboard` relies...

Please note that the [flytekit type engine](https://github.com/flyteorg/flytekit/blob/master/flytekit/core/type_engine.py#L1587) serializes untyped dicts (`dict[str, Any]`) like the one in your example to a `json` string. json does not know about different number types...

> We're seeing a similar issue - in our case we have dataclasses that may contain arbitrary JSON user input, and Flyte keeps converting ints to floats every time we...

> so dictionaries in flyte are strict to keep same value type for all keys otherwise the typing fails? I cant use dict[str, int] because some other keys have string...

I noticed that `Union` is also a valid univariate type for the default dict type transformer. Thus this also works: ```py from typing import Union from flytekit import workflow, task...

We also ran into this issue, blocking us from type checking the flyte parts of our code base. It seems like `flytekit` types generally describe the static workflow graph at...

After digging deeper into this, I assume there is currently no solution do solve this in flytekit. Internally we do use a workaround, which I will elaborate at the end....

As I also ran into this issue I started debugging it to check for a fix. The reason seems to be that `--disable=all` also disables the `unknown-option-value` messages. Thus when...

> This PR needs take over because because it has been open 8 weeks with no activity. I plan to take another look but lately had not really much capacity....