HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ra-mos

no profile record

Submissions

Patent Public Search

ppubs.uspto.gov
1 points·by ra-mos·5 лет назад·0 comments

comments

ra-mos
·5 лет назад·discuss
“proposed solutions solve this”

~ every cryptocurrency/blockchain/web3 article ever written
ra-mos
·5 лет назад·discuss
Your next metaphor is worse. If a steering system wan an invention/innovation than it deserves ip rights.

What are you on? Should everything be equally competed in society, even after invention?
ra-mos
·5 лет назад·discuss
Yes, because at one point in time that was an innovation. You said it yourself.
ra-mos
·5 лет назад·discuss
You say that, but have you met my aunt? … /s (mostly)
ra-mos
·5 лет назад·discuss
To be frank, you’re struggling with junior web dev problems. Learn to be an engineer.
ra-mos
·5 лет назад·discuss
This and all the comments with similar experiences really just put a negative light on marriage.
ra-mos
·5 лет назад·discuss
Could the issues be less presumptuous about googles business, and more technical? E.g the incorporation of NLP model(s) in search that don’t perform well in the wild?

Curious about their query parsing as well. I can’t recall exact queries, but I had instances where scrambled typos (but still obvious words to me) broke the results all together & no suggested fixes.
ra-mos
·5 лет назад·discuss
Flatbuffers have been good in a demux/parallel architecture I’ve been managing. We split single requests into ~100-500 requests — each using the same Flatbuffer object (list of items). Each sub request reads header data to pull some percentage (1/100-500) of data out of the flatbuffer it needs to process.

The library is still fairly low level, and our abstraction has become complex. Still, the best performance approach we’ve been able to find.
ra-mos
·5 лет назад·discuss
Hoping your sentiment is sarcastic.
ra-mos
·5 лет назад·discuss
Hey,

1. Our models act as building blocks for various feature apis/algos, but embeddings are required for all tasks. We have one major task which a user request sends their business items (think documents / docIds), anywhere from 1-10,000s — here we have to quickly retrieve those. We do also do a deep retrieval (basically ANN) Which requires no lookup.

2. First batch of embeddings was 4.2TB, last reduced down to ~400GB. Not sure if ssd/embedded db (leveldb) is still best but still works fine. Embeddings grow larger weekly - through business process generation (we do a big write once a week). but also through user processing — for these we actually store in mongo since they work best there / usually user specific / and are generated ad hoc so it doesn’t make since to re-shard leveldb embeddings.

3. We use active/passive feedback mechanisms. Think thumbs up/down for active, and contextual analysis for passive (did good things happen after AI use).

#3/ your last question is the hardest. We have a small data science team figuring out the best way to build fine-tuning sets. But the production model training is vastly different and more reliable. This is the classic stability/plasticity problem. We have yet to successfuly fine tune the model with feedback data. But we have informed how to better train the model. The best case scenario will likely be as-hoc/user-specific mechanisms to change results in real-time / based on current context collected (think tiktok algo, or knows what you’re in the mood for but knows how to bounce out or keep things well varied to keep your attention).
ra-mos
·5 лет назад·discuss
A lot of this is dependent on what “prod” means. If production applications, you are largely just retrofitting devops processes to incorporate model apis. Nothing really changes from how you deploy/monitor your systems.

Now, production models probably means some advanced domain-specific use case. The problem with all these MLOps platforms, or model serving services, is that they are abstractions for general use cases. Capitalism effect, I wouldn’t buy into these quite yet.

To serve production models, you’re going to need to get low-level, especially if performance is a feature. You’ll need to figure out architecture designs that work best for your use case.

Eg, I serve NLP models to augment a complex enterprise search engine. These are large TensorFlow models, with large embedding spaces.

We use kubernetes, ssd optimizations for fast embedding retrieval, and custom compiled TensorFlow container images. We then have sort of a demux architecture to custom-batch every request into sub requests (100s-1000s) that fan out for inference across kubernetes. Almost every api is in Golang, and we replaced Python with Go to run the models. Flatbuffers for every request and to spend no cost in serialization as we turn every user request into 100s that return back as a single request in ~1s. Some CPU optimizations along the way, and now we’re happy with the current prod infrastructure.

AFAIK, no MLOps tool could’ve done this for us. The major new thing we do is capture every piece of metric we can, and incorporate UX as part of ML research and retraining.
ra-mos
·5 лет назад·discuss
Novice question, when would you use something like this over something like lex/yacc?

https://tldp.org/HOWTO/Lex-YACC-HOWTO-4.html