HN user

groar

1,205 karma

Functional programming, deep learning

Posts84
Comments27
View on HN
platform.openai.com 1y ago

GPT Image 1 API is out

groar
6pts1
www.cnn.com 1y ago

Scientists detect signature of life on a distant planet, study suggests

groar
1pts0
mistral.ai 1y ago

Codestral 25.01 by Mistral.ai

groar
1pts0
arxiv.org 1y ago

A Strong Correspondance Between Bayesian Networks and Linear Logic Proof-Nets

groar
1pts0
arxiv.org 1y ago

FlyAI – Injecting Responses of a Living Fly into Decision Making

groar
1pts0
arxiv.org 1y ago

Google proves Fault-Tolerant Quantum Computing is possible

groar
2pts0
mistral.ai 2y ago

Mistral Large

groar
599pts267
arxiv.org 2y ago

SpikingBERT: Distilling Bert to Train Spiking Language Models

groar
2pts0
arxiv.org 2y ago

The Extractor: a drop-in replacement for self attention in Transformers

groar
1pts0
nautil.us 3y ago

Super insects are devouring the forests

groar
2pts0
arxiv.org 3y ago

Fine-Tuned Language Models Are Continual Learners

groar
2pts0
huggingface.co 3y ago

New Google big language model Flan-T5 available on HuggingFace

groar
2pts0
arxiv.org 3y ago

SetFit: Efficient Few-Shot Learning Without Prompts

groar
1pts0
arxiv.org 3y ago

Neural Networks Are Decision Trees

groar
4pts2
arxiv.org 4y ago

YOLOv7: Trainable Bag-of-Freebies

groar
92pts31
arxiv.org 4y ago

Reconstructing Training Data from Trained Neural Networks

groar
1pts0
arxiv.org 4y ago

A Robust Backpropagation-Free Framework for Images

groar
2pts0
www.nature.com 4y ago

Deep physical neural networks trained with backpropagation

groar
108pts36
arxiv.org 4y ago

Can the brain use waves to solve planning problems?

groar
1pts0
arxiv.org 5y ago

Google breaks the trillion-parameter ceiling with the Switch Transformer

groar
48pts4
en.wikipedia.org 5y ago

Origins of the “OK” Word

groar
17pts1
arxiv.org 5y ago

Neural Teleportation

groar
3pts0
arxiv.org 5y ago

Using Tree Neural Networks in Proof-Assistant HOL4

groar
15pts0
www.cnbc.com 6y ago

Bitcoin crossed the $10k mark again

groar
4pts0
arxiv.org 6y ago

YOLOv4: Optimal Speed and Accuracy of Object Detection

groar
234pts54
arxiv.org 6y ago

The Cost of Training NLP Models: A Concise Overview

groar
2pts0
deepomatic.com 6y ago

Cleaning algorithm finds 20% of errors in major image recognition datasets

groar
221pts72
arxiv.org 6y ago

Deep Molecular Programming

groar
130pts11
chrome.google.com 6y ago

A chrome extension that quantifies how much you touch your face

groar
1pts0
arxiv.org 6y ago

Neural Networks Are Surprisingly Modular

groar
30pts0

Although they should not dismiss it at all as it can lead to extremely successful companies. I have Dataiku or UIPath (they did it for years) as good examples. They leveraged their existing customers to test their first product, with success.

That is true up to a certain point (for instance, in my experience, having bounding boxes that are not pixel-perfect acts as a regularizer), but there is also a good chance that you are mislabelling edge cases, situations that happen rarely, and that definitely hurts the performance of the neural network to make a correct prediction on these difficult / uncommon scenarios.

Sure, in terms of expressivity, you can obtain much better results with a CNN. But very often, it is done at the cost of computational efficiency: SIFT descriptors are "easy" to compute.

This paper titled "Backpropagation in the Simply Typed Lambda-calculus with Linear Negation" describes how to generalize the backpropagation algorithm used for computational graphs (like in PyTorch or TF) to the simply-typed lambda calculus augmented with a notion of linear negation.

By relying on conceptual tools originating from Linear Logic, the authors prove the correctness of the transformation and its time efficiency.

We started using Slite http://slite.com/ 6 months ago with great success. We previously used Atlassian Confluence for our internal knowledge database, and it resulted in very static content and poor adoption. Slite is a much better choice: we use it for "static" company knowledge (like onboarding, processes, etc.), but also for most of our dynamic content (meeting notes, document drafting, sales support documentation, etc.).

Many people (including dev) use it on a daily basis, and most people on a weekly basis.

Definitely recommend.

Clearly, when I think about the hardest thing I ever coded, I have the following story in mind.

Back in 2002 I was writing a floppy disk driver for the little OS we were writing with a friend. It turned out finding anything else than very sparse documentation was really hard, plus for some unknown reason the floppy drive behavior seemed to be of non-deterministic nature. Maybe the fact that I was 15 didn't help.

At some point, after many nights spent on debugging it, it just worked. I still don't know why. I never changed any line of the code after that moment, by fear of breaking it.

There are many reasons for the name: apart from being one of France's emblems, one of the people who initiated the project is Thierry Coquand and the original type system underlying it is called Calculus Of Construction (CoC).

But I know for a fact that they thought it would be good joke as well.

  Or at least a very [...] formal one
That's a good one ;)
    What you probably mean is something like nice abstract accounts of memory models for C that at the same time capture all the optimisations modern C-compilers want to do, while still being implementable on existing CPUs. That is indeed an open problem [1].
True. Although CompCert [1] is a nice effort toward that goal: a proved C compiler that covers almost all C99 with many optimizations implemented and proved sound.

[1] http://compcert.inria.fr/compcert-C.html