Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
gthompson512
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
gthompson512
1y ago
@dang I feel like this is getting close to the lowest level of discourse and occurs somewhat often these days where people overly reference the output of some AI and then are challenging the results without googling. I feel a proper hacker
2.
▲
by
gthompson512
1y ago
Sorry I read about this way long ago, what is meant by "worked for me" "project", "behind my back" and such. I didn't get the connotations for most of that from reading articles about this. What is the rea
3.
▲
by
gthompson512
1y ago
There is a bunch of new phrases people have been using around AI topics, so it can be hard to tell what exactly is being talked about, like "Roko's Basilisk", the "lottery card hypothesis?"(not quite remembering the
4.
▲
by
gthompson512
1y ago
I have been thinking a bit lately about how much sense that makes compared to just using word vectors, since traditional queries are super short and often keyword based(like searching for "ground beef" when wanting "ground be
5.
▲
by
gthompson512
1y ago
> "the start of the banana zone" What does this mean? Is it some slang for exponential growth, or is it a reference to something like the "paperclip maximizer"?
6.
▲
by
gthompson512
1y ago
I usually exercise ~5 days a week and on those days will shower or bathe twice. On days when I am doing yard work or grilling it might bathe 3 times depending on how poorly I planned out my day.
7.
▲
by
gthompson512
1y ago
Sorry if I missed it, but what about keeping the suffixes and trying to do some finetuning on the source then clustering sentences or at least pages which given the media should be consistent-ish
8.
▲
by
gthompson512
1y ago
Sorry, looking more, it doesn't seem like you are doing what you are saying. This is just poorly breaking text into bad chunks with no regard for semantics and is like ~200 lines of actual code. What is this for? Most models can handl
9.
▲
by
gthompson512
1y ago
How does it handle documents longer than the context length of the model? Sorry there are a ton of these regularly and they don't usually think about this. Edit: it seems like it just splits in to sentences which is a weird thing to d
10.
▲
by
gthompson512
1y ago
This has been planned for a while, is this news?
11.
▲
by
gthompson512
1y ago
Sorry if this comment is outdated or ill-informed, but it is hard to follow the current news. Do the Phi models still have issues with training on the test set, or have they fixed that?
12.
▲
by
gthompson512
1y ago
> So in D, is it now natural to mix borrow checking and garbage collection? I think "natural" is a bit loaded, there is native support in the frontend for doing both. You have to go out of your way to annotate functions with @
13.
▲
by
gthompson512
1y ago
There is a simple corollary to Stone-Weierstrass that extends to infinite intervals, but requires the use of rational functions.
14.
▲
by
gthompson512
1y ago
Depending on what exactly you are trying to learn from this, I would recommend looking at the source for musl like https://git.musl-libc.org/cgit/musl/tree/src/string and trying to understand why it look
15.
▲
by
gthompson512
1y ago
Minor correction, macros CANT have newlines, you need to splice them during preprocessing using \ followed by a new line, the actual code has these: from https://github.com/codr7/hacktical-c/blob/main/mac
16.
▲
by
gthompson512
1y ago
> - "My name is Hardy, G.H. Hardy.": A unique function satisfies exp(x+y) = exp(x)exp(y). This has nothing to do with e and is satified by 2^x or any a^x, so this wouldn't work for introducing e in particular. - "The
17.
▲
by
gthompson512
1y ago
This led to the OpenD language fork ( https://opendlang.org/index.html ) which is led by some contributors who had other more general gripes with D. The fork is trying to merge in useful stuff from main D, while advancing th
18.
▲
by
gthompson512
1y ago
This forces each field to be quoted, and it assumes that each row has the same fields in the same order. A library can handle the quoting issues and fields more reliably. Not sure why you went with a generator for this either. Most people
19.
▲
by
gthompson512
1y ago
> It's just that people tend to use specialized tools for encoding and decoding it instead of like ",".join(row) and row.split(",") You really super can't just split on commas for csv. You need to handle the