HN user

breadislove

207 karma
Posts24
Comments40
View on HN
www.mixedbread.com 23d ago

Asymmetric Quantization: Near-Lossless Retrieval with 97% Storage Reduction

breadislove
110pts44
www.mixedbread.com 1mo ago

Dense Retrievers Know More Than They Can Express

breadislove
2pts0
www.seangoedecke.com 7mo ago

The whole point of OpenAI's Responses API is to help them hide reasoning traces

breadislove
2pts0
elite-ai-assisted-coding.dev 8mo ago

Boosting Claude: Faster, Clearer Code Analysis with MGrep

breadislove
1pts0
github.com 8mo ago

Show HN: Mgrep – A Semantic, Multimodal Grep

breadislove
6pts1
substack.com 8mo ago

From Control to Resonance: Why I Let an AI Decode My Voice

breadislove
2pts0
www.axios.com 9mo ago

Meta overhauls legacy AI operations

breadislove
7pts1
www.mixedbread.com 9mo ago

Fantastic (Small) Retrievers and How to Train Them

breadislove
2pts0
nga.demo.mixedbread.com 9mo ago

Show HN: Semantic search over the National Gallery of Art

breadislove
145pts37
cats.mixedbread.com 9mo ago

Show HN: Search 4 Cute Cats

breadislove
2pts0
www.mixedbread.com 1y ago

Maxsim-CPU: Maximising Maxsim Efficiency

breadislove
3pts0
oddmaido.substack.com 1y ago

The Voices: Generating Face from Voice Using AI

breadislove
2pts0
www.mixedbread.com 1y ago

The Ceiling: How OCR Quality Limits RAG Performance

breadislove
2pts0
www.mixedbread.com 1y ago

Baked-in Brilliance: Reranking Meets RL with mxbai-rerank-v2

breadislove
2pts0
techcrunch.com 1y ago

Perplexity launches $50M seed and pre-seed VC fund

breadislove
1pts1
rocm.blogs.amd.com 1y ago

Unlock DeepSeek-R1 Inference Performance on AMD Instinct MI300X GPU

breadislove
2pts0
ml-valentines.github.io 1y ago

ML Valentines

breadislove
1pts0
github.com 1y ago

V0.2: Networking in Python

breadislove
2pts0
huggingface.co 1y ago

An Analysis of Chinese LLM Censorship and Bias with Qwen 2 Instruct

breadislove
3pts0
www.opencv.ai 1y ago

YOLO Unraveled: A Clear Guide

breadislove
2pts0
www.mixedbread.ai 1y ago

BMX: A Freshly Baked Take on BM25

breadislove
91pts11
nextword.substack.com 1y ago

Most AI startups are service businesses, pretending to be product companies

breadislove
7pts0
www.mixedbread.ai 2y ago

64 Bytes per Embedding, Yee-Haw

breadislove
1pts0
swe-agent.com 2y ago

SWE-Agent

breadislove
6pts0

a good system (like openevidence) indexes every paper released and semantic search can incredible helpful since the the search api of all those providers are extremely limited in terms of quality.

now you get why those system are not cheap. keeping indexes fresh, maintaining high quality at large scale and being extremely precise is challenging. by having distributed indexes you are at the mercy of the api providers and i can tell you from previous experience that it won't be 'currently accurate'.

for transparency: i am building a search api, so i am biased. but i also build medical retrieval systems for some time.

you should check mixedbread out. we support indexing multimodal data and making data ready for ai. we are adding video and audio support by the end of the year. might be interesting for the OP as well.

we have couple investigative journalists and lawyers using us for a similar usecase.

DeepSeek OCR 9 months ago

For everyone wondering how good this and other benchmarks are:

- the OmniAI benchmark is bad

- Instead check OmniDocBench[1] out

- Mistral OCR is far far behind most Open Source OCR models and even further behind then Gemini

- End to End OCR is still extremely tricky

- composed pipelines work better (layout detection -> reading order -> OCR every element)

- complex table parsing is still extremely difficult

[1] https://github.com/opendatalab/OmniDocBench

we have extremely processing heavy jobs where user upload large collection of files (audios, pdfs, videos etc.) and expect to get fast processing. its just that we need to fan out sometimes, since a lot of our users a sensitive to processing times.

We have extremely processing heavy jobs where user upload large collection of files (PDFs, audios, videos etc.) and expect to get fast processing.

Hetzner is really great until you try to scale with them. We started building our service on top of Hetzner and had couple 100s of VMs running and during peak time we had to scale them to over 1000 VMs. And here couple of problems started, you get pretty often IPs which are black listed, so if you try to connect to services hosted by Google, AWS like S3 etc. you can't reach them. Also at one point there were no VMs available anymore in our region, which caused a lot of issues.

But in general if you don't need to scale crazy Hetzner is amazing, we still have a lot of stuff running on Hetzner but fan out to other services when we need to scale.

Thats actually not correct. Embeddings can handle relationships like “without” or “not.” when trained for it. You need to scale up the training massively to make it generalize it well. The current version of Mixedbread Search supports negatives like "tshirt without stripes". You can check it out on our launch video [1]. We are working on a way more generalized model, which should be able to capture relationships, emotions and much more. The current models are just limited.

[1] https://www.mixedbread.com/blog/mixedbread-search

We are right now not including the artist name. Which will be done in the next iteration of the model (next week). Right now the search is only based on what the model can "see". And it seems like that the model does not understand the art of Mark Rothko.

The next version can see the image and read the metadata.

A bit more context: We are include everything in the latent space (embeddings) without trying to maintain multiple indexes and hack around things. There is still a huge mountain to climb. But this one seems really promising.