HackerTrans
TopNewTrendsCommentsPastAskShowJobs

LukeEF

no profile record

Submissions

Many Worlds: a philosophy of data collaboration

github.com
2 points·by LukeEF·2 वर्ष पहले·0 comments

The Semantic Web Is Dead – Long Live the Semantic Web

github.com
31 points·by LukeEF·2 वर्ष पहले·5 comments

Parallelizing HNSW (Hierarchical Navigable Small World) graphs

github.com
49 points·by LukeEF·3 वर्ष पहले·6 comments

Entity Resolution with AI: DBLP and ACM Publication Benchmark

terminusdb.com
3 points·by LukeEF·3 वर्ष पहले·0 comments

Destructing Trees Safely and Cheaply

ismailmaj.github.io
1 points·by LukeEF·3 वर्ष पहले·0 comments

[untitled]

1 points·by LukeEF·3 वर्ष पहले·0 comments

[untitled]

1 points·by LukeEF·3 वर्ष पहले·0 comments

A Giant Data Merge

github.com
1 points·by LukeEF·3 वर्ष पहले·0 comments

Google DeepMind’s game-playing AI just found another way to make code faster

technologyreview.com
2 points·by LukeEF·3 वर्ष पहले·1 comments

Are AI startups too easy to copy?

semafor.com
2 points·by LukeEF·3 वर्ष पहले·0 comments

[untitled]

1 points·by LukeEF·3 वर्ष पहले·0 comments

Building a Vector Database to Make Use of Vector Embeddings

github.com
1 points·by LukeEF·3 वर्ष पहले·0 comments

Open Source Text to Video

github.com
2 points·by LukeEF·3 वर्ष पहले·0 comments

We wrote a vector database in a week (in Rust)

github.com
3 points·by LukeEF·3 वर्ष पहले·0 comments

Anthropomorphism in Dialogue Systems

arxiv.org
2 points·by LukeEF·3 वर्ष पहले·0 comments

Solution to the Object Relational Impedance Mismatch

terminusdb.com
1 points·by LukeEF·3 वर्ष पहले·0 comments

Schema migrations as first class citizens

github.com
6 points·by LukeEF·3 वर्ष पहले·0 comments

Hollywood is best example of labor power in America

pluralistic.net
1 points·by LukeEF·3 वर्ष पहले·0 comments

Tech workers could take labor lessons from Hollywood’s writers

techcrunch.com
1 points·by LukeEF·3 वर्ष पहले·0 comments

Why S.F. can’t pay its teachers on time

sfchronicle.com
5 points·by LukeEF·3 वर्ष पहले·0 comments

comments

LukeEF
·3 वर्ष पहले·discuss
'People struggling should just shut up 'cause everything is great - look at these charts'
LukeEF
·3 वर्ष पहले·discuss
I am not sure of the exact statistic, but something like 95% of all production databases are less than 10GB. There seems to be a 'FAANG hacker' fascination with 'extreme-scale' which probably comes from seeing the challenges faced by the handful of organizations working at that level. Much of the time most graph database users want (as in why are they there) a DB that allows you to flexibly model your data and run complex queries. They probably also want some sort of interoperability. If you can do that well for 10GB, that is holy grail enough. We certainly found that developing graph database TerminusDB [1] - most users have smaller production DBs, more lightly use bells and whistles features, and really want things like easy schema evolution.

[1] https://github.com/terminusdb/terminusdb
LukeEF
·3 वर्ष पहले·discuss
Succinct data structures ftw.
LukeEF
·3 वर्ष पहले·discuss
How about some succinct data structures and delta encoding for modern databases [1]. Succinct data structures are a family of data structures which are close in size to the information theoretic minimum representation (while still being queryable).

[1] https://github.com/terminusdb/terminusdb/blob/dev/docs/white...
LukeEF
·3 वर्ष पहले·discuss
There is a prolog based database that will take away many foundational problems in implementing a rules system or other logic programming artifact. It is called TerminusDB [1]

[1] https://github.com/terminusdb/terminusdb
LukeEF
·3 वर्ष पहले·discuss
From the google leaks paper:

'LoRA is an incredibly powerful technique we should probably be paying more attention to

LoRA works by representing model updates as low-rank factorizations, which reduces the size of the update matrices by a factor of up to several thousand. This allows model fine-tuning at a fraction of the cost and time. Being able to personalize a language model in a few hours on consumer hardware is a big deal, particularly for aspirations that involve incorporating new and diverse knowledge in near real-time. The fact that this technology exists is underexploited inside Google, even though it directly impacts some of our most ambitious projects.' [1]

[1] https://www.semianalysis.com/p/google-we-have-no-moat-and-ne...
LukeEF
·3 वर्ष पहले·discuss
There are already some open source alternatives to datomic. TerminusDB (https://github.com/terminusdb/terminusdb) for example is implemented in prolog (and Rust) so has the datalog variant query power that makes datomic so powerful. If you want free as in speech (thou I love free beer).
LukeEF
·3 वर्ष पहले·discuss
There are already a few open-source alternatives that run datalog variant query languages. I'd point the curious towards TerminusDB [1] and TypeDB [2]. TerminusDB is implemented in prolog (and rust) so an alternative with datalog in the heart.

[1] https://github.com/terminusdb/terminusdb [2] https://github.com/vaticle/typedb