Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- ja
|
| 4 |
+
- en
|
| 5 |
+
license: apache-2.0
|
| 6 |
+
tags:
|
| 7 |
+
- av
|
| 8 |
+
- japanese
|
| 9 |
+
- video
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Data-MV Dataset
|
| 13 |
+
|
| 14 |
+
Collection of Japanese AV movies, organized by movie code.
|
| 15 |
+
|
| 16 |
+
## Structure
|
| 17 |
+
|
| 18 |
+
- `{CODE}.mp4` — Video file named by its unique movie code
|
| 19 |
+
- `metadata.json` — Full metadata (title, actress, genre, release date, etc.)
|
| 20 |
+
- `movies.csv` — Searchable table view (code, title, actress, release date)
|
| 21 |
+
|
| 22 |
+
## How to Search by Actress or Title
|
| 23 |
+
|
| 24 |
+
### Option 1: Browse movies.csv (easiest)
|
| 25 |
+
Open [`movies.csv`](./movies.csv) — Hugging Face renders CSV files as an interactive table. You can search by actress name, title keyword, or release date directly in the browser.
|
| 26 |
+
|
| 27 |
+
### Option 2: Download metadata.json
|
| 28 |
+
```python
|
| 29 |
+
import requests, json
|
| 30 |
+
url = "https://huggingface.co/datasets/invokeaibase/data-mv/raw/main/metadata.json"
|
| 31 |
+
data = requests.get(url).json()
|
| 32 |
+
# Search by actress
|
| 33 |
+
mako_movies = [m for m in data if "Oda Mako" in m.get("actress", [])]
|
| 34 |
+
# Search by genre
|
| 35 |
+
bondage = [m for m in data if "Bondage" in m.get("genre", [])]
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
### Option 3: Hugging Face Dataset Viewer
|
| 39 |
+
The `movies.csv` file is auto-indexed by HF's dataset viewer — just click the file in the repo browser.
|
| 40 |
+
|
| 41 |
+
## Stats
|
| 42 |
+
- Total movies: 101
|
| 43 |
+
- With metadata: 70
|
| 44 |
+
- Actresses: Maria Himesaki, Oda Mako, and more compilation appearances
|
| 45 |
+
|
| 46 |
+
## Indexing metadata for remaining movies (in progress)
|
| 47 |
+
The pipeline currently captures metadata for Oda Mako movies and will update `metadata.json` as more are processed.
|