Zola
Zola
You could generate Svg's tags instead, or you can use a transformer to transform your tags to JSX tags that react-pdf handles. There are issues on this repo explaining how...
As I'm not familiar with react-pdf works internally, I may need some explanations but I would be glad to propose a marge request
Hi @diegomura, The issue is still present in the latest version.
Hi, Is it possible to have a bit of help to understand how the test framework works? Or a link to a documentation? When I used the debugger, I did...
Hi, Ok perfect, I confused `test_masked.py` and `test_maskedtensor.py`. I added the test and updated the documentation. From what I see `fold` is only implemented through `torch.nn.Fold`/`torch.nn.functional.fold` and would need to...
Hi, From what I understand, `torch.nn.Fold` has a specific semantic that requires a custom masked implementation: what should happen when I fold a combination of specified and unspecified values? Should...
Hi @cpuhrsch, I'm trying to catch with the Fold/Unfold operators as they are different from Tensor.unfold. Looking at the operator's documentation, I understand the masked semantics of this operator like...
Hi @cpuhrsch @mruberry, Could we merge this PR and I will open a new one for the Fold when I have more time? Many thanks
Hi @cpuhrsch, No problem! If I understand correctly, updating torch/testing/_internal/common_methods_invocations.py should have generated the correct tests for im2col and col2im. Though the tests fail for these functions on cuda with...
Hi @cpuhrsch, I added the support for bool on cuda devices but I don't find the tests for im2col nor col2im. Tests have been generated for `nn_functional_unfold_cuda_bool` which uses im2col...