When it comes to teaching computers to recognize images (like distinguishing between a cat and a dog in a photo), deeper neural networks (a type of artificial intelligence) are usually more effective. However, the deeper the network (meaning it has more layers of processing), the harder it is to train.The breakthrough of Deep Residual Learning is like giving the computer a set of shortcuts to learn more effectively. In a regular deep neural network, each layer tries to learn a new feature or pattern from the image. But in a Residual Network (or ResNet), each layer also has the option to refer back to what was learned in previous layers. Think of it like a student who, instead of learning everything from scratch, can build on what they already know.This approach makes it easier to train very deep networks. The team behind this research tested networks with up to 152 layers, which is significantly deeper than previous models, yet these networks were easier to train and performed better.Their method proved to be highly effective. On a major image recognition challenge (ILSVRC 2015), their model set a new record for accuracy. They also showed that this approach works well on other tasks, like detecting and classifying objects in images (like finding and labeling all the dogs in a bunch of photos).In summary, Deep Residual Learning is a smart way of training AI to be better at recognizing and understanding images by allowing it to build upon previously learned information, leading to more accurate and efficient image recognition.
# Search
curl -X POST "https://search.dria.co/hnsw/search" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"rerank": true, "top_n": 10, "contract_id": "HV5DboBwlwTiFTUvuMGJBnH7O_72PdZE6JnlpUqZPHs", "query": "What is alexanDRIA library?"}'
# Query
curl -X POST "https://search.dria.co/hnsw/query" \
-H "x-api-key: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{"vector": [0.123, 0.5236], "top_n": 10, "contract_id": "HV5DboBwlwTiFTUvuMGJBnH7O_72PdZE6JnlpUqZPHs", "level": 2}'