Jason Ken Adhinarta
Jason Ken Adhinarta
Any progress?
A workaround would be to add the your custom `wav` files to `/Applications/BreakTimer.app/Contents/Resources/app/app/renderer/sounds`, and rename the old files to something like `gong_start.wav.bak` and `gong_end.wav.bak`. Then renaming your custom files into...
@guillaumeeb I believe I found a solution to the problem ([code](https://github.com/jasonkena/dendrite/blob/d875ebad0e29756e8d3b45e439444d3060762d39/chunk_pipeline/pipelines/pipeline.py#L142)). When adapt kills a worker, it calls scancel on the worker's job, inevitably killing other worker processes under the...
Any progress?
I solved it by casting the inputs as 32-bit tensors first, then casting the results back to 16-bit. You can see my implementation here: https://github.com/jasonkena/yolact/tree/amp/external/DCNv2
@medwatt how did you manage to get the snippet to auto-expand with `context "math()"`? Adding the context is preventing me from expanding the snippet.
@smjonas unfortunately, it does not seem to work. On the main branch, I can at least see the snippet in the menu (still being unable to expand it), but using...
Another workaround would be to place a dummy Python interpreter. ` "python.pythonPath":"/home/jason/python",` /home/jason/python: ``` #!/bin/bash python "$@" ```
`extra_axis_parameters=['axis equal image']` worked. See https://tex.stackexchange.com/questions/227759/pgfplots-axis-limits-and-axis-equal
Try replacing query-ball_point in pointnet2_utils.py with the following (using the pytorch3d library): ``` from pytorch3d.ops import ball_query def query_ball_point(radius, nsample, xyz, new_xyz): dists, idx, nn = ball_query( p1=new_xyz, p2=xyz, K=nsample,radius...