HackerTrans
トップ新着トレンドコメント過去質問紹介求人

foobarqux

3,681 カルマ登録 15 年前

投稿

Apple to Raise Prices Due to Memory Chip Crunch

wsj.com
42 ポイント·投稿者 foobarqux·26 日前·19 コメント

OpenAI, Pentagon add more surveillance protections to AI deal

axios.com
3 ポイント·投稿者 foobarqux·4 か月前·2 コメント

You're Thinking About AI and Water All Wrong

wired.com
3 ポイント·投稿者 foobarqux·7 か月前·0 コメント

LLM probabilities cannot distinguish between possible and impossible language

arxiv.org
2 ポイント·投稿者 foobarqux·10 か月前·0 コメント

コメント

foobarqux
·4 時間前·議論
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
·5 時間前·議論
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
·5 時間前·議論
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 時間前·議論
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 時間前·議論
Fluidaudio implements Parakeet on ANE. I'd like to know how SpeechAnalyzer compares in speed.

https://github.com/FluidInference/FluidAudio
foobarqux
·10 日前·議論
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 日前·議論
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 日前·議論
Where is this claim?
foobarqux
·13 日前·議論
They are in fact the same. 108dB loud.
foobarqux
·13 日前·議論
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 日前·議論
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 日前·議論
> 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 日前·議論
The proposed limit is around the level of standing right next to a leaf blower.
foobarqux
·13 日前·議論
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 日前·議論
What is Rogue-like about this?
foobarqux
·2 か月前·議論
llm-cmd-comp is the best of these types of tools.

https://github.com/CGamesPlay/llm-cmd-comp
foobarqux
·2 か月前·議論
....

     function repology() {
         curl -L --user-agent 'hackernews' \
             "http://repology.org/api/v1/project/$@"
    }
foobarqux
·4 か月前·議論
What is a better option?
foobarqux
·5 か月前·議論
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 か月前·議論
Have you considered using quickcheck/random/property-based testing with LLM code generation to automate function implementation?