|
---
|
|
license: apache-2.0
|
|
---
|
|
|
|
# Nixiesearch demo datasets
|
|
|
|
This repo has a couple of small-scale demo datasets in JSON format you can use for playing with [nixiesearh](https://github.com/nixiesearch/nixiesearch):
|
|
|
|
* [MSRD](https://github.com/metarank/msrd): A [TMDB](https://www.themoviedb.org/)-sourced dataset of popular movies.
|
|
|
|
|
|
## MSRD: A movie search ranking dataset
|
|
|
|
See [the original dataset docs](https://github.com/metarank/msrd) for more details
|
|
|
|
Example record:
|
|
|
|
```json
|
|
{
|
|
"_id": "27205",
|
|
"title": "Inception",
|
|
"overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: inception, the implantation of another person's idea into a target's subconscious.",
|
|
"tags": [
|
|
"alternate reality",
|
|
"thought-provoking",
|
|
"visually appealing"
|
|
],
|
|
"genres": [
|
|
"action",
|
|
"crime",
|
|
"drama"
|
|
],
|
|
"director": "Christopher Nolan",
|
|
"actors": [
|
|
"Tom Hardy",
|
|
"Cillian Murphy",
|
|
"Leonardo DiCaprio"
|
|
],
|
|
"characters": [
|
|
"Eames",
|
|
"Robert Fischer",
|
|
],
|
|
"year": 2010,
|
|
"votes": 32606,
|
|
"rating": 8.359,
|
|
"popularity": 91.834,
|
|
"budget": 160000000,
|
|
"img_url": "https://image.tmdb.org/t/p/w154/8IB2e4r4oVhHnANbnm7O3Tj6tF8.jpg"
|
|
}
|
|
|
|
```
|
|
|
|
## License
|
|
|
|
Apache 2.0 License |