Albert Zeyer
Albert Zeyer
> This is strange. `electron/main` is a source file, in the Git repository. Do you have it? ``` $ find electron* electron electron/package.json electron-nodepty electron-nodepty/preload.js electron-nodepty/renderer.js electron-nodepty/logging.js electron-nodepty/README.md electron-nodepty/main.js electron-nodepty/package.json...
Ok, I did a `git checkout .` to reset those changes in the `electron` dir, and now `make` finally seems to succeed.
However, the binary does not seem to work. At least for the Electron frontend (`./bin/domterm -Belectron`), I get the error: ``` Uncaught Exception: Error: Cannot require "screen" module before app...
Some of the other frontends seem to work partially, with various other bugs. E.g. `-Bqt` works somewhat, `-B` (without args) also works and opens a new tab in Chrome (is...
> What bugs are you seeing with `-Bqt`? I know there are some issues - but what is bad enough to qualify it as working "somewhat"? The window decorations very...
> I checked in a change to Makefile.am to make the rule for `dt-wry/src/versions.rs` more robust. > > Could you update, `autoreconf -i`, re-run configure, and `make dt-wry/src/versions.rs` and see...
> Could you try: > > ``` > bin/domterm -Bqt titlebar=system > ``` > > Is that more pleasant? Ah, that fixes the non-native window decorations. And now moving around...
What workaround do you suggest? Maybe sth like: ```python def onnx_compat_floor_div(a, b): # https://github.com/onnx/tensorflow-onnx/issues/2174 abs_a, abs_b = tf.abs(a), tf.abs(b) return tf.where( a * b >= 0, a // b, -abs_a...
> 1. Not very scalable, having to add this to every dataset makes it unnecessarily complicated. Well, you would factor this out, to have the logic in some common class...
@JackTemaki argued, he (and many others) anyway use `MetaDataset`, so if this is part of `MetaDataset`, not much would change in terms of config complexity for them. Regarding `extern_data`, yes,...