Jakub Piotr Cłapa

Results 18 issues of Jakub Piotr Cłapa

`torch.compile` is confused when we change sampling temperature and `top_k` parameters and recompiles the model. To avoid this I think it should be enough to wrap them in `cuda` tensors...

This will be a model that converts text tokens into Whisper-encoder-derived semantic tokens. With that we will have a complete TTS pipeline. To train it we can re-use Whisper as...

goal

Example: ``` from fastcore.script import anno_parser def test_fun(toggle:bool=True): print(toggle) test_fun() print(anno_parser(test_fun).parse_args([])) ``` Prints: ``` True Namespace(toggle=False, pdb=False, xtra=None) ``` What I would expect ``` True Namespace(toggle=True, pdb=False, xtra=None) ``` In...

Right now decoding errors are not reporting much information about what happened. It makes finding and fixing the invalid data quite hard. I think it would be great to improve...

I think there is a small mistake in the address mapping formula explanation for set-associative caches.

I believe this does not work with CoffeeScript 1.6.2 since the -r option got dropped somewhere (without a trace in the changelog): ``` shell [jpc@jpc static] coffee --require coffeescript-growl -w...

The `go install` tool complains about the replace directive in `go.mod`: ```console # go install github.com/webdataset/tarp/tarp@latest go: downloading github.com/webdataset/tarp v0.0.2 go: downloading github.com/webdataset/tarp/tarp v0.0.0-20221009163818-4aac5677b928 go: github.com/webdataset/tarp/tarp@latest (in github.com/webdataset/tarp/[email protected]): The go.mod...

You can trigger the error like this: ``` for x in progress_bar([], total='noinfer'): pass ``` The fix is to initialize the counter outside of the loop so it work even...