HackerTrans
TopNewTrendsCommentsPastAskShowJobs

foobarqux

3,681 karmajoined قبل 15 سنة

Submissions

Apple to Raise Prices Due to Memory Chip Crunch

wsj.com
42 points·by foobarqux·قبل 26 يومًا·19 comments

OpenAI, Pentagon add more surveillance protections to AI deal

axios.com
3 points·by foobarqux·قبل 4 أشهر·2 comments

You're Thinking About AI and Water All Wrong

wired.com
3 points·by foobarqux·قبل 7 أشهر·0 comments

LLM probabilities cannot distinguish between possible and impossible language

arxiv.org
2 points·by foobarqux·قبل 10 أشهر·0 comments

comments

foobarqux
·قبل 4 ساعات·discuss
Thanks, I didn't see vanch007 version at first (only ~30 downloads), I usually look at mlx-community. For the size I was looking at the wrong model (TTS not transcribe-diarize), thanks for the corrections.
foobarqux
·قبل 6 ساعات·discuss
If you want to use this on the CLI: https://github.com/finnvoor/yap.

Supports SRT/TXT/VTT or JSON-with-optional-word-level-timestamps output and progress meter.

Also it can transcribe live system audio.
foobarqux
·قبل 6 ساعات·discuss
Just tried test using yap on a single ~1hr mp3: yap/Speechanalyzer is about 50% slower than fluidaudio on M1. yap interface is nicer though.

https://github.com/finnvoor/yap
foobarqux
·قبل 6 ساعات·discuss
16GB! (edit: this is wrong, I was looking at TTS, the transcribe model is 1.7GB). Compared to Parakeet 2.3GB (but no diarization).

Also doesn't seem to be tailored to Apple hardware (i.e. no MLX or ANE variant/implementation)
foobarqux
·قبل 6 ساعات·discuss
Fluidaudio implements Parakeet on ANE. I'd like to know how SpeechAnalyzer compares in speed.

https://github.com/FluidInference/FluidAudio
foobarqux
·قبل 10 أيام·discuss
108 dB is the proposed FAA allowable pressure at the surface of the earth. They didn't come up with this number arbitrarily they did it with consultation with the supersonic plane companies and if those companies could achieve much less than 108dB then the proposed limit would be lower.
foobarqux
·قبل 12 يومًا·discuss
Obviously it is assumed we are talking about frequencies in the range of the audio spectrum (which a sonic boom is). Your point has nothing to do with the dB scale.
foobarqux
·قبل 13 يومًا·discuss
Where is this claim?
foobarqux
·قبل 13 يومًا·discuss
They are in fact the same. 108dB loud.
foobarqux
·قبل 13 يومًا·discuss
The initial boom is less than a second but it's like standing right next to the leafblower (not across the street) and is accompanied a lasting thundering-noise which is also extremely loud.
foobarqux
·قبل 13 يومًا·discuss
There is a substantial noise beyond the initial boom which is very loud even relative to the main boom. But even just a half second of a car horn going off right next to you every so often is intolerable.
foobarqux
·قبل 13 يومًا·discuss
> It’s not accurate to convert .1 psf to dB because it’s an impulsive shape, not a continuous tone. And human loudness perception depends on how smooth (low frequency) the shape is

Sorry can you explain more? It's just the definition of dB (?)

And it's less impulsive than you imagine, go to youtube to listen to the sonic boom + continuous roar.

The FAA has no criteria about the "texture" of the sound and there is no reason to believe the allowed planes will differ substantially in this respect compared to every other supersonic aircraft in the past.
foobarqux
·قبل 13 يومًا·discuss
The proposed limit is around the level of standing right next to a leaf blower.
foobarqux
·قبل 13 يومًا·discuss
0.11 pound per square foot is what is being proposed. That's 108 decibels. Which is between standing next to a lawn mower and standing next to a car horn. I don't see how anyone will tolerate that in practice.

https://www.omnicalculator.com/physics/db
foobarqux
·قبل 18 يومًا·discuss
What is Rogue-like about this?
foobarqux
·قبل شهرين·discuss
llm-cmd-comp is the best of these types of tools.

https://github.com/CGamesPlay/llm-cmd-comp
foobarqux
·قبل شهرين·discuss
....

     function repology() {
         curl -L --user-agent 'hackernews' \
             "http://repology.org/api/v1/project/$@"
    }
foobarqux
·قبل 4 أشهر·discuss
What is a better option?
foobarqux
·قبل 5 أشهر·discuss
I'm saying you can go even further and automate the entire thing using LLMs/agents, it is pretty much the ideal use case: you have a black-box reference implementation to test against; descriptive documentation for what the functions should do; some explicitly supplied examples in the documentation; and the ability to automatically create an arbitrary number of tests.

So not only do you have a closed loop system that has objective/automatic pass-fail criteria you also don't even have to supply the instructions about what the function is supposed to do or the test cases!

Obviously this isn't going to be 100% reliable (especially for edge cases) but you should be able to get an enormous speed up. And in many cases you should be able to supply the edge case tests and have the LLM fix it.

(Codex is still free for the next few days if you want to try their "High"/"Extra high" thinking models)
foobarqux
·قبل 5 أشهر·discuss
Have you considered using quickcheck/random/property-based testing with LLM code generation to automate function implementation?