Henry Bigelow

Results 14 issues of Henry Bigelow

Hi, Is it possible to draw vertices? For instance, with this [vertex shader]](https://github.com/hrbigelow/wij-wemnan/blob/master/shaders/scatter-v.cc), I eventually call it with: ```javascript write_to_gl: function() { this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this.glbuf); this.gl.bufferData(this.gl.ARRAY_BUFFER, this.jsbuf, this.gl.STATIC_DRAW); this.gl.bindBuffer(this.gl.ARRAY_BUFFER, null); }...

I noticed in the paper each Prediction Convolution is formulated with output channels = n_boxes * (n_classes + 4), but in the [code](https://github.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection/blob/43fd8be9e82b351619a467373d211ee5bf73cef8/model.py#L218) you have separated each level into separate...

# Project Improvement Would it be possible to include the PKCE extension technique in the examples/actix.rs? I've been looking through the code and haven't figured out yet how to use...

improvement

In chromium 71 at least, MathJax doesn't render due to an outdated link. I used: for f in $(find . -name '*.html'); do cp $f $f.orig; perl -lne '$_ =~...

Making compatible with tensorflow 1.9.0

Hi, Is there a way to add equation numbers to code below? And more generally API documentation on what markdown is available inside `` and `` tags? ```html \begin{aligned} \mathbb{E}_{z...

Following shows the actual values of the input-dependent $\Delta$ during inference of the 2-layer network during the induction-heads task as described in the paper. I successfully trained the model to...

This might be a question for jax, but I think it probably comes up in Haiku. Supposing I have the code within some `hk.Module`: ```python out = input # the...

Hi, I've noticed that there are several situations where I get a `VkErrorExtensionNotPresent` from pyvulkan, yet I believe the extension is actually present in my Vulkan SDK. I had a...

Hi, I wondered if you'd consider (or is it already available?) providing types for the enums so we can use type annotations, for example: ```python from typing import NewType VkFormat...