About DatasetBook Name - This column holds the name of the bookAuthor - This column contains the Author of the bookAverage Rating - This column specifies the average rating received by the bookNumber of Ratings - This column provides the total number of ratings it has receivedScore on Goodreads - This column specifies the score of the book on GoodreadsThis dataset may be used for many techniques such as regression (for the target column of Goodreads score), Clustering of different Types of books based on their author, or designing a book recommendation model.
Book Name | Author | Average Rating | Number of Ratings | Score on Goodreads |
---|---|---|---|---|
The Ministry of Fear | Graham Greene | 3.79 | 6648 | 136.0 |
G. | John Berger | 3.7 | 4265 | 135.0 |
Absolute Beginners | Colin MacInnes | 3.6 | 2100 | 135.0 |
The Posthumous Memoirs of Brás Cubas | Machado de Assis | 4.25 | 30624 | 135.0 |
# 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": "OafBE4jTcZVW_NzEfAo5fuDOGrp7IxDAGHVkyOEhCS4", "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": "OafBE4jTcZVW_NzEfAo5fuDOGrp7IxDAGHVkyOEhCS4", "level": 2}'