BreakingCiphers
BreakingCiphers t1_jb6o4fb wrote
Reply to [D] I’m a Machine Learning Engineer for FAANG companies. What are some places looking for freelance / contract work for ML? by doctorjuice
Have you tried platforms like Upwork? I had a lot of success on it 3 years ago
BreakingCiphers t1_j32sw4k wrote
Reply to comment by Sepf1ns in Image matching within database? [P] by Clarkmilo
Looks cool, thanks for pointing it out
BreakingCiphers t1_j32mj4h wrote
Reply to Image matching within database? [P] by Clarkmilo
For every image in your database, you could use features from the penultimate layer in a CNN, index them.
Then to search over images, simply calculate the distance between the query image features and the database features.
This can be expensive computationally and memory wise if you have a lot of images. Some solutions could be to cluster your database embeddings, use sparse matrices, use approximate KNN, add some explore-exploit heuristics (take the images with the lowest distance compared to the first 37% images in the database, this cuts down search time by up to 63%, but might not be great). There is possibly more out there in SoTA, but I am not up to date there.
BreakingCiphers t1_je7dlg5 wrote
Reply to [D] Improvements/alternatives to U-net for medical images segmentation? by viertys
While testing models and playing with hyperparams can be fun, the real problem is that you are trying to apply deep learning to 100 images.
Get more images.