HN user

tullie

160 karma
Posts38
Comments34
View on HN
techcrunch.com 6d ago

Whatnot acquires Shaped to accelerate AI

tullie
3pts0
playground.shaped.ai 5mo ago

Show HN: ShapedQL – A SQL engine for multi-stage ranking and RAG

tullie
80pts23
hn.shaped.ai 10mo ago

Show HN: A personalized HN feed that learns from your favorites

tullie
23pts10
www.shaped.ai 10mo ago

The Vector Bottleneck: Limitations of Embedding-Based Retrieval

tullie
5pts0
www.shaped.ai 1y ago

2025 Netflix Personalization, Recommendations and Search Workshop (PRS)

tullie
1pts0
www.shaped.ai 1y ago

One Embedding to Rule Them All

tullie
1pts0
www.shaped.ai 1y ago

Pinterest Replaced Multiple Models with One Embedding – It Outperformed Them All

tullie
3pts0
www.shaped.ai 1y ago

Jagged Flash Attention Optimization

tullie
24pts3
play.shaped.ai 1y ago

Show HN: Configurable Value Model Interface for Recommendation and Search

tullie
9pts0
www.shaped.ai 1y ago

Optimizing for Multiple Objectives in Search and Recommendations

tullie
10pts1
play.shaped.ai 1y ago

Show HN: Shaped – Fine-tuning semantic search on behavioral signal

tullie
13pts0
news.ycombinator.com 1y ago

Launch HN: Shaped (YC W22) – AI-Powered Recommendations and Search

tullie
121pts32
www.shaped.ai 2y ago

Meta's Trillion Parameter Recommendation System

tullie
11pts0
www.shaped.ai 3y ago

Personalization in Marketplaces

tullie
1pts0
www.shaped.ai 3y ago

Improving Recommender Systems with LLMs

tullie
10pts0
www.shaped.ai 3y ago

LLMs – A Paradigm Shift in RecSys?

tullie
12pts0
www.shaped.ai 3y ago

MovieLens to Production in Minutes

tullie
1pts0
www.shaped.ai 3y ago

Shaped 1.0: The fastest way to personalize your product, platform or marketplace

tullie
1pts0
www.shaped.ai 3y ago

Breaking Down Toolformer

tullie
1pts0
www.shaped.ai 3y ago

Order Matters: Evaluating Your Recommendation System

tullie
2pts0
www.shaped.ai 3y ago

Sounding the Secrets of AudioLM

tullie
85pts19
www.shaped.ai 3y ago

Shaped is now SoC 2 Compliant

tullie
2pts0
www.shaped.ai 3y ago

Do Large Language Models (LLMs) Reason?

tullie
5pts1
www.shaped.ai 3y ago

How to evaluate recommendation algorithms

tullie
4pts0
www.shaped.ai 3y ago

Ranking: search, session and similar

tullie
5pts0
www.costanoavc.com 3y ago

The Data Advantage in the Foundation Models Era

tullie
1pts0
techcrunch.com 3y ago

Musk's first email to Twitter staff

tullie
3pts0
www.sciencedirect.com 3y ago

If you don't want to be late, enumerate

tullie
1pts0
www.theverge.com 3y ago

Wordcraft, Google's magic text editor

tullie
2pts0
twitter.com 3y ago

Redesign of Swiss passport (now with maps inside)

tullie
3pts0

Fair enough. We're releasing our first bring-your-own-cloud (BYOC) offering in April. We're working with a big e-commerce platform in Germany that has data sovereignty requirements so totally get the constraint and excited to offer something like this. We're starting with AWS then will do GCP at end of year. Full on-premise will still be awhile though to be honest.

For the cloud platform though (console.shaped.ai), i'd recommend just testing with some synthetic or deanonymized data or our demos and then if you're interested in BYOC reach out after April!

Makes sense. Implementation simplicity was part of the reason we didn't go for this. Currently the language is a transpiler, which maps SELECT and FROM into the retrieval stages, WHERE as post-filter stage, ORDER BY as score stage and REORDER BY to the final stage reranker. Because the text lookup is pushed through to the retriever we put it there. In the future we'll have more logic in the language compilation process which means that we can move things around a bit and under the hood they all get pushed to where they need to anyway.

This line comes from a specific customer we migrated from Elastic Search, they had 3k lines of query logic, and it was completely unmaintainable. When they moved to Shaped we were able to describe all of their queries into a 30 line ShapedQL file. For them the reducing lines of code basically meant reducing tech-debt and ability to continue to improve their search because they could actually understand what was happening in a declarative way.

To put it in the perspective of LLMs, LLMs perform much better when you can paste the full context in a short context window. I've personally found it just doesn't miss things as much so the number of tokens does matter even if it's less important than for a human.

For the turbopuffer comment, just btw, we're not a vector store necessarily we're more like a vector store + feature store + machine learning inference service. So we do the encoding on our side, and bundle the model fine-tuning etc...

You can think of Shaped more like a vector store + feature store + ML inference combined into one service. This bundling is what makes it so easy to get state-of-the art real-time recommendations and search performance.

E.g imagine trying to build a feed with pgvector, you need to build all of the vector encoding logic for your catalog, then you need to build user embeddings, the models to represent that and then have a service that at query time encodes user embeddings from interactions does a lookup on pgvector and returns nearest neighbor items. Then you also need to think about fine-tuning reranking models, diversity algorithms and the cold-start problem of serving new items to users. Shaped and ShapedQL bundles all of that logic into a service that does it all as one in a low-latency and fault-tolerant way.

Would love to chat about it, and talk about dbt integration. There's a few use cases that have come up where this would be really helpful. I'll PM you.

1) So we do actually have a python and typescript API, it's just the console web experience is SQL only as it feels the best for that kind of experience. The most important thing though is that it's declarative. This helps keep things relatively simple despite all the configuration complexity, and is also the best for LLMs/agents as they can iterate on the syntax without doc context.

2) Yeah exactly, joins is something we can't do at the moment, and i'm not sure the exact solution their honestly. Under the hood most of Shaped's offline data is built around Clickhouse, and we do want to build a more standard SQL interface just so you can do ad-hoc, analytical queries. We're currently trying to work if we should integrate it more directly with ShapedQL or just keep it as a separate interface (e.g. a ShapedQL tab vs a Clickhouse SQL tab).

3) We didn't really want to create a new SQL dialect, or really a new database. The problem is none of the current databases are well suited for search and recommendations, where you need extremely low latency, scalable, fault-tolerance, but also the ability to query based on a user or session context. One of the big things here is that because Shaped stores the user interactions alongside the item catalog, we can encode real-time vectors based on those interactions all in an embedding query service. I don't think that's possible with any other database.

4) I haven't looked into mindsdb too much, but this is a good reminder for me to deep dive into it later today. From taking a quick pass on it, my guess is the biggest difference is that we're built specifically for real-time search, recommendations and RAG, and that means latency, and ability to integrate click-through-rate models and things becomes vital.

Thanks so much for the playground syntax, have some follow up questions but i'm going to pm you if that's okay. Agreed on the being able to see which columns exist.

[dead] 7 months ago

Hey everyone,

I’m one of the founders of Shaped. We’ve spent the last few years building relevance infrastructure.

Over the time we've noticed a convergence happening: The stack for Search (usually Elastic/OpenSearch) and the stack for Ranking (Vectors + Feature Stores) are merging. Maintaining two stacks for the same math is inefficient.

We just launched Shaped 2.0 to collapse this stack. It treats Relevance like a database problem:

1. Ingest: Connect to Snowflake/Postgres/Kafka. 2. Index: We handle the embeddings (ModernBERT, etc.) and statistical feature engineering. 3. Query: We built a SQL-like language (ShapedQL) to retrieve, filter, and rerank candidates in <50ms.

Instead of writing Python glue code to merge BM25 and Vector results, you can do it in a single query:

SELECT title, description FROM semantic_search("$param.query"), keyword_search("$param.query")

ORDER BY -- Combine semantic relevance (ColBERT) with a personalized model

  colbert_v2(item, "$param.query") +
  click_through_rate_model(user, item)
We have a free tier ($300 credits/no-cc) if you want to try the SQL abstraction yourself.

Try it here: https://console.shaped.ai/register

Yeah exactly. I was really worried about reducing the serendipity that HN provides (as it's arguably why I've used it for so long as well) but the configurability allows it so that everyone can tweak their level of personalization to get their perfect goldilocks level.

Yes when integrating Shaped you connect up the data sources needed to ingest: interactions, items and users. The Shaped interface then allows you to select which exact fields should be used for creating a Shaped model. We provide a full SQL interface to do this, which gives a lot of flexibility.

Our dashboard provides monitoring to help understand what data is ingested and view data quality over time. We expect customers to monitor this but also have alerts on our side and jump in to help customers if we see anything unexpected.

The dashboard also shows training metrics over time (how well does the model predict the test set after each retrain?) and online attribution metrics (how well does the model optimize the chosen objective?).

Customers can disable retraining if they want (which is essentially pinning the model version to current), we can do model version rollbacks on our side if we see an issue or if requested but it's not a self-serve feature yet. Because we've made it easy to create or fork a Shaped model, we've seen customers often create several models as fall-backs that rely on more static data sources or are checkpoints of a good state.

Australia represent! Although we're based in NYC we still are a mostly Aus/international team over here, it's great!

The biggest change is some of the less sexy stuff, like scale and security. E.g. we're now able to scale to 100M+ MAU companies with 100M+ items, and we have a completely tenant isolated architecture, with security as a top priority.

We've also made the platform more configurable and lower levels and we've found that people like choosing their own models and experimenting rather than just relying on our system.

Finally, we launched search only a couple of months ago and are currently heavily focused on building a best-in-class experience there.

Compared to Vespa, we're much easier to get setup on. A big part of this is that we have real-time and batch connectors to all leading CDPs and data warehouses. E.g. if you're on Amplitude it takes < 10mins to stream data directly to Shaped and start seeing initial results.

Being quicker to setup, also means it's quicker to build and experiment with new use-cases. So you can start with a feed ranking use-case the first week and then move to an email recommendation use-case the next week.

In terms of actual performance and results, we've never gone head-to-head in an A/B test so i'm not sure the specifics there honestly!

We have a library with about 100 algorithms which you can choose from or by default we automatically choose based on your objective.

Majority of them are open source models we've forked and improved. Just as an example, we integrated in gSASRec last week: https://github.com/asash/gSASRec-pytorch, and added a couple of improvements on scale and the ability use language and image features. We use LLMs for the encoding of unstructured data, and we host these our self, although OpenAI and Gemini are used for error message parsing and intelligent type inference, things not on the real-time path.

More info here: https://docs.shaped.ai/docs/overview/model-library

Thank you!

Would love to chat, we've had several customers come over from Algolia and they've seen significant uplift. I can share more if you want to message me at tullie@shaped.ai.

Our pricing is competitive with Algolia's to give you an idea there. We really wanted to get pricing calculator done get before this post but ran out of time. Keep an eye out over the next month for it to come up!

The build vs buy decision does come up, but like you mentioned, the product direction of Shaped is to be primitives for search and recommendation, allowing users that want to build use Shaped to empower them to build quicker (e.g. integrated behind their psudo-recommendation engine). In truth we have multiple abstractions to Shaped allowing more technical teams to integrate like this, or less technical ones to have more of an end-to-end integration experience.

The other related market trend we think about here: recommendation is going through a similar journey to what search did 10 years ago. Search at some point was more build leaning, but over time the technology became democratized and then companies like Elastic and Algolia had offerings that pushed search to lean towards buy. We're seeing recommendations going through the same revolution now that the technologies and system design (e.g. 4 stage recommenders) are more solidified. It's the data that makes these systems unique between companies not the infrastructure or algorithms.

Thanks for the first question!

We run online A/B tests to objectively measure quality against our ranking algorithms and other baselines. As you mentioned it's crucial that the measure of quality for these tests chosen is fair and correlates with the topline business objective. E.g. if you just evaluate clicks then the system will show click-baity content and overall perform worse.

To handle this, we make it really easy to define different objectives and experiment with how it changes results. So although we don't claim to solve the issue directly, we believe that if users can quickly experiment with different proxy objectives, that'll be able to find the one that correlates with their topline objective quicker.

We just launched Shaped's Model API, which allows you to configure a multi-stage recommendation system for your ranking use-case. Excited to see what people make with it.