HN user

rprenger

136 karma

Senior Deep Learning Researcher at Nvidia.

Posts0
Comments41
View on HN
No posts found.

I felt a similar way when I moved from Chuck Yeager's Air Combat to (I think) F15 Strike Eagle 3. Yeager was the perfect mix for me. I remember rarely even seeing the enemy planes I was firing at in newer games.

One thing about horror movies is that even though they usually pretty much follow a three act structure they at least usually have to have a prologue to set the mood before the "regular life" part. But recent ones I've noticed that don't follow the structure closely are

"Skinamarink" and "I Saw the TV Glow"

Yeah as soon as I saw the "answer" I was like "yeah sure blah blah blah, you can make a trick question, but what IS the country that you'll actually hit if you walk East from Seattle". I was guessing England, but the right answer is France.

I believe Zero123++ gives you the ability to generate consistent images from multiple camera views, where as DreamCraft3D seems to output 3D models with geometry and textures if I'm understanding it right. Like I could take the output of DreamCraft3D (if I had the code) and drop the result into Blender for example.

I kind of hoped the long term result of htmx, instead of just being a Javascript library, was to become a standard in a newer version of HTML itself. The constraints of only forms being able to do POSTs, and the only way to handle the response is to rewrite the entire page seems arbitrarily limiting. If htmx were just HTML6 or whatever, it'd outlive all the Javascript frameworks.

I think the "weight" here is weight as in mass and "convolutions" here is as in folds. The size/weight and folds of Einstein's brain have been the subject of studies, and the quote was from 1980.

I generally agree with the assessment that the limiting factor in quality is the signal from the MRI. Just one slight correction to the description of previous projects. We first built models that predict the voxel responses from images using ML. Then recorded the fMRI response on a new image. Then we ran many many images (not just those previously seen that have an fMRI response) through the voxel models and picked the top N images with predicted responses close to the actual response. Basically we used the big list of images as an approximate "natural image prior". Then we'd often show the average of that top N images so you get one picture (which destroys interesting multi-model stuff, but we didn't have good stable diffusion models of images back then that could do a gradient search on or something).

If you wanna see what the reconstructions look like without fancy image priors (to get a better idea of how little signal there is) check out this figure from one of the early papers: https://pubmed.ncbi.nlm.nih.gov/19778517/#&gid=article-figur...

I don't think a larger vocab would help. All the individual letters are in the ~50k token vocab already, but the word "alphabet" will still not get tokenized to [a, l, p, h, a, b, e, t]. Using a larger vocab like PaLM's 256k vocab would have the same issue.

Alexandria Search 4 years ago

For my first search of "GFlowNetworks" (which the search bar suggested) It said: Found 5,887 (or something) results, but showed no results

For my second I searched my name and got a Wikipedia article about a show I've never heard of which didn't have my name anywhere in it.

For my third I searched "GFlowNetworks" again and it said Found 2,656,844 results in 1.61s, but showed no results again

That's an interesting pattern, that seems pretty clear now that you mention it. I would also argue that Ralph Breaks the Internet falls squarely into the "self/internal conflict" class too, as the main antagonist is literally Ralph's own insecurity.

I think what the other commenters are getting at is that PDEs can be used without having a closed form solution (and mostly are used that way as closed form solutions usually only come up in special artificial cases). You start your system in a real known state and then propagate it forward in time using (for example) the finite difference method on the equations to figure out the state at a later time. https://en.wikipedia.org/wiki/Numerical_methods_for_partial_...

Yeah, figure 4 is more clear. This is the early stopped loss though, so the regularization is more explicit. If you trained the large models to completion on small data sets they would do much worse on test error due to overfitting.

It is interesting that larger models with regularization (early stopping) seems to work better than than training smaller models to convergence though.