HN user

wskish

277 karma

Technical founder (Ruckus Wireless and Cogniac); kicking ideas and playing around towards #3.

See also @wskish on twitter.

Posts14
Comments114
View on HN

codebases of high quality open source projects and their major dependencies are probably another good source. also: "transformative fair use", not "stolen"

I think about this a lot. Consider the difference between the tidy signage of Tokyo versus the pell-mell streetfronts of Hong Hong. Societies should be able to choose how businesses impinge the public space.

Amplified messaging from corporations is not the same as the free speech of individuals. Just as we disallow advertising for cigarettes and hard liquor on TV, a democratic society should be free to select other classes of messages that corporations are not permitted to amplify into public spaces.

To fully experience the night sky there is no substitute for getting up to altitude. Most of the atmosphere that really interferes with the view is way down low. Try a moonless night at 8000 to 11000 feet elevation in the eastern Sierra or Yosemite high country to really blow your mind. Boss level is a summit bivy during a new moon meteor shower with a close friend or lover.

"The Andrew Message System is one of the most ambitious and technically successful systems yet built in the area of electronic communication. In this paper, the authors of the system explain the key decisions in the architecture and reflect on what was done right and what was clearly wrong. Implementation details are mentioned only in passing, in order to maximize the relevance of this paper for the designers of successor systems."

It is amazing much room there is to re-optimize cities around smaller electric vehicle transportation when you think on a slightly longer timescale.

It isn't so clear to me. If it conveys a human in any way that humans don't naturally move unassisted then in my mind it qualifies as a conveyance and hence a vehicle, especially in the sense of the the French véhicule, from Latin vehiculum (“a carriage, conveyance”), from vehere (“to carry”)

"Attention with Linear Biases (ALiBi): Inherited from the MPT family, this feature eliminates the context length limits by replacing positional embeddings, allowing for efficient and effective processing of lengthy documents. In future we are planning to finish training on our larger dataset and to increase amount of tokens for context."

This is interesting, but also confusing. What is the current context limit? It mentions eliminating the limit but then mentions increasing it in the future.

Do they mention anywhere the definition of "low quality" data or the proportion of removed data that was low quality versus duplicate?

They mention "When upsampled, we expect SlimPajama to perform equal to or better than RedPajama-1T when training at trillion token scale." But i guess "upsampling" in this case is just explicit duplication of the training data. So the only potential gains would be from the removal of the low quality data?

GPT Best Practices 3 years ago

Interesting that we have OpenAI using the more generic "GPT" here. Previously they would refer more specifically to ChatGPT, GPT-3, or GPT-4. I am guessing this is related to their trademark application for GPT, which was initially refused by the USPTO on the grounds of "GPT" being "merely descriptive".

https://news.ycombinator.com/item?id=36155583

"REFUSAL—MERELY DESCRIPTIVE: Registration is refused because the applied-for mark merely describes a feature, function, or characteristic of applicant’s goods and services."

There are other details that exceed my trademark ken. Anyone with trademark experience care to parse this for us?

In this case we mean you can get some of the benefits of langchain and pinecone such as semantic search and augmented GPT retrieval without needing to deal with vectors, chunking, and llm tooling at such a low level. You can upload docs and then begin chatting against them immediately. JiggyBase is just a higher level abstraction on top of these same type of components which may be useful in a lot of cases where you don't need full control over the vector embeddings and such and just want to interact with your data.

After working through several projects that utilized local hnswlib and different databases for text and vector persistence, I integrated open source hnswlib with sqlite to create an embedded vector search engine that can easily scale up to millions of embeddings. For self-hosted situations of under 10M embeddings and less than insane throughput I think this combo is hard to beat.

https://github.com/jiggy-ai/hnsqlite