Viewing profile — warangal
warangal
HN member- Joined
- Wed, Jun 08, 2022, 11:08 AM UTC
- HN karma
- 189
- Public activity
- 63 items
- HN profile
- View on Hacker News ↗
About warangal
No profile information was provided.
Recent public activity
-
comment
Comment #47306694
VITS is such a cool model (and paper), fast, minimal, trainable. Meta took it to extreme for about 1000 languges. It seems like you have been working on this application for someti…
-
comment
Comment #47287280
I may be wrong here, but blog-post seems AI written, with repetition of sequences like "the inference pipeline was rebuilt using architecture-aware fused kernels, optimized schedul…
-
comment
Comment #47133856
pretty cool work! Though it leaves me wondering if coreboot/bios code can directly interface with thermal-management and battery controller , shouldn't it be feasible to improve up…
-
comment
Comment #46948210
I was also reading through lobsters Memory management, which (i think) currently implements "borrow first" semantics, to do away with a lot of run-time reference counting logic, wh…
-
comment
Comment #46311914
How do you market it, through social-media or are there dedicated channels for sharing awareness for such Mac Apps, if you don't mind sharing?
-
comment
Comment #46172476
I work on an image search engine[0], main idea has been to preserve all the original meta-data and directory structure while allowing semantic and meta-data search from a single in…
-
comment
Comment #46089447
Currently (Semantic) ML model is the weakest (minorly fine-tuned) ViT B/32 variant, and more like acting as a placeholder i.e very easy to swap with a desired model. (DINO models h…
-
comment
Comment #46088652
Hi, Author here! I have been working on this project for quite some time now. Even though for such search engines, basic ideas remain the same i.e extracting meta-data or semantic …
- story
-
comment
Comment #46086457
Using `zig-cc (clang)` to set a particular `LibC` version is one of the best decisions i have made, and saved me from those meaningless libC mismatch errors!
- story
-
comment
Comment #45990922
I know it may be not what you are looking for, but most of such models generate multiple-scale image features through an image encoder, and those can be very easily fine-tuned for …
-
comment
Comment #44970358
Pretty cool project!, I have been also trying to do something similar with very limited (abstract) OPs akin to fundamental computer instructions. Just using the numpy backend for n…
-
comment
Comment #44948959
A bit tangential statement, about parakeet and other Nvidia Nemo models, i never found actual architecture implementations as pytorch/tf code, seems like all such models, are insta…
-
comment
Comment #44709173
Nice write up! It is about speeding up underlying hash-table for a `cuckoo filter` , as in false-positives are allowed, unlike data-structure like dictionary, which makes sure that…
-
comment
Comment #43446703
Thanks for explaining it, given you are writing it from scratch it gives you a lot of control in modelling a particular feature! I did bookmark this project a few months ago but co…
-
comment
Comment #43444524
Are you trying to do this message passing using Nim channels ? For my use-cases, i always had to resort to just passing `pointers`, to prevent any copying, most of time i just divi…
- story
-
comment
Comment #42338706
for images readme is at: https://github.com/eagledot/hachi/tree/main/images/readme.md with more than enough details! It is supposed to be a search engine for all modalities, for no…
-
comment
Comment #42336840
Disclaimer: I work on such a project[0] I think a combination of CLIP and some face-recognition may solve your issues! It just takes a path to your directory, and can index all the…
-
comment
Comment #41799931
Yes, trigram mainly but also bigram and/or combination of both are used generally to implement fuzzy search, zoekt also uses trigram index. But such indices depend heavily on the c…
-
comment
Comment #41799305
I myself have been working on a personal search engine for sometime, and one problem i faced was to have an effective fuzzy-search for all the diverse filenames/directories. All ap…
- story
- story
-
comment
Comment #41547680
Embeddings capture a lot of semantic information based on the training data and objective function, and can be used independently for a lot of useful tasks. I used to use embedding…