├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── clean_amazon_product_metadata_main.py ├── clean_amazon_product_metadata_main.sh ├── contributing.md ├── labels ├── mave_negatives_labels.jsonl ├── mave_negatives_labels_counts ├── mave_negatives_labels_sample.jsonl ├── mave_positives_labels.jsonl ├── mave_positives_labels_counts └── mave_positives_labels_sample.jsonl └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/README.md -------------------------------------------------------------------------------- /clean_amazon_product_metadata_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/clean_amazon_product_metadata_main.py -------------------------------------------------------------------------------- /clean_amazon_product_metadata_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/clean_amazon_product_metadata_main.sh -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/contributing.md -------------------------------------------------------------------------------- /labels/mave_negatives_labels.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/labels/mave_negatives_labels.jsonl -------------------------------------------------------------------------------- /labels/mave_negatives_labels_counts: -------------------------------------------------------------------------------- 1 | 1248009 2 | -------------------------------------------------------------------------------- /labels/mave_negatives_labels_sample.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/labels/mave_negatives_labels_sample.jsonl -------------------------------------------------------------------------------- /labels/mave_positives_labels.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/labels/mave_positives_labels.jsonl -------------------------------------------------------------------------------- /labels/mave_positives_labels_counts: -------------------------------------------------------------------------------- 1 | 2226509 2 | -------------------------------------------------------------------------------- /labels/mave_positives_labels_sample.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/labels/mave_positives_labels_sample.jsonl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research-datasets/MAVE/HEAD/requirements.txt --------------------------------------------------------------------------------