-
## Work Items
* Meta-device initialization / `_apply()` methods
- [x] Support initial meta-device initialization using `swap_tensors` path
- [ ] Remove manual padding logic after https://github…
-
## Pytorch v1.0 EagerMode
A small background from Pytorch's site on Eager Mode vs Graph/JIT/FX mode:
>"PyTorch supports two execution modes [1]: eager mode and graph mode. In eager mode, operat…
-
In order to further optimize the development cycle eager execution will be big feature. The idea is that you can run partial pipelines / single components easily and get instant feedback on how your d…
-
I do not know how to make sense of the error so i paste it here:
Fetching 10 files: 100%|███████████████████████████████████████████████████████████████| 10/10 [04:55
-
Here I want to collect some things to be done to speed up eager-mode execution. Most of it did not really matter in graph-mode execution when those extra things are only executed once. That are extra …
-
AFAIK, only python currently supports tensorflow eager execution. This would make prototyping and designing dynamic graphs much easier, and would really leverage Julia's strengths in low-overhead loop…
-
```
| ?- phrase(([a],{1}),[]).
no, unexpected.
type_error(callable,...). % expected, but not found
```
The idea is that the logical grammar rule expansion happens without any error conditi…
-
in your code, tf.placeholder is not compatible with eager execution
but when I turn of eager mode, there is a new error "numpy() is only available when eager execution is enabled"
how can I resolve …
-
### Description
I am very excited to learn about eager workflows! Unfortunately, so far I have not managed to make them work for me outside of sandbox and local.
The documentation focuses mostl…
-
I have an xgboost model I am trying to run couterfactuals on using the CounterfactualProto explainer. Given the RuntimeError I see below, I tired to disable the eager execution using the method found…