Zecong Hu
Zecong Hu
First of all, thank you for building such a wonderful package! It is now an essential part of both my work and my hobby projects. This issue is similar to...
In a few places Texar-PyTorch would print out information (e.g., "download complete", "pre-trained weights loaded") using the Python builtin `print` function. The behavior might not be desired and is not...
There are several problems with the current data modules: 1. Filtering has to happen at data source level. This means one can't discard examples in `process`, but instead must supply...
When subclassing existing modules, a common use case I've encountered is to automatically fill certain arguments of the super class constructor based on HParams values. By design, HParams are realized...
Configurations in examples (e.g. [transformer/config_model.py](https://github.com/asyml/texar-pytorch/blob/master/examples/transformer/config_model.py)) is written in a separate file with config values as global variables. To be able to use these config files, we *import* them with `importlib`,...
As pointed out in #110, it would be useful to record hidden states in return values. A problem with the current interface is we only have type annotation for `State`,...
The current logic for `.get()` (which internally calls `.get_entries()` can be summarized as: 1. Create sets of valid entry IDs for the given constraints: - Entry must be of type...
### The problem This is the same issue as #76914. I'm using the Switchmate integration and all of a sudden it stopped working. Logs show that it's slow to update,...
- [x] I've checked [docs](https://rich.readthedocs.io/en/latest/introduction.html) and [closed issues](https://github.com/Textualize/rich/issues?q=is%3Aissue+is%3Aclosed) for possible solutions. - [x] I can't find my issue in the [FAQ](https://github.com/Textualize/rich/blob/master/FAQ.md). **Describe the bug** When using `console.capture()` in Jupyter, a...
This pull request fixes issue #32 . Using tmuxline with tmux 1.6 would cause vim to hang on startup. The code in question was https://github.com/edkolev/tmuxline.vim/blob/master/autoload/tmuxline.vim#L130: ``` call system("tmux source "...