1. Paper Information
2. Reproduction Goal
Which specific figure or table from the paper needs to be reproduced?
3. Directory Structure Plan
To keep the repository organized, please strictly follow this folder structure:
- Proposed Folder Name:
examples/reproduce_papers/<YYYY>_<Keywords>/
- Naming Convention:
Year_Keywords (snake_case)
- Example:
examples/reproduce_papers/2023_quantum_transformer/
4. Metadata Definition (meta.yaml)
Please provide the content for the meta.yaml file that will be placed in the folder.
Contributors/AI: Copy and fill this block directly into the meta.yaml file.
title: ""
arxiv_id: ""
url: ""
year:
authors:
- ""
- ""
tags:
- ""
- ""
hardware_requirements:
gpu: False
min_memory: ""
description: ""
outputs:
- target: "Figure 3"
path: result.png
script: "main.py"
5. Implementation Requirements
For AI Assistants / Contributors: Please strictly follow the rules below.
6. Verification
To be considered complete, please provide:
- A screenshot of the generated plot or the terminal output matching the paper's result.
- Confirmation that
black and pylint have been run.
# Example verification commands
black examples/reproduce_papers/<paper_subfolder>/*.py
pylint examples/reproduce_papers/<paper_subfolder>/*.py
7. Checklist
1. Paper Information
Title: Unsupervised Generative Modeling Using Matrix Product States
Link: https://arxiv.org/abs/1709.01662
Tags: machine learning, matrix product states
2. Reproduction Goal
Which specific figure or table from the paper needs to be reproduced?
Target: Fig. 3
Expected Metric/Result:
Allow to reduce the problem size compared to the paper: Yes
3. Directory Structure Plan
To keep the repository organized, please strictly follow this folder structure:
examples/reproduce_papers/<YYYY>_<Keywords>/Year_Keywords(snake_case)examples/reproduce_papers/2023_quantum_transformer/4. Metadata Definition (
meta.yaml)Please provide the content for the
meta.yamlfile that will be placed in the folder.Contributors/AI: Copy and fill this block directly into the
meta.yamlfile.5. Implementation Requirements
Docstring Standard:
The file MUST start with a docstring containing the paper title and the link.
Format example:
Outputs:
The reproduced data and figures should be in outputs/ subfolder.
Subfolder structure:
Code Quality & Linter:
black.pylintchecks (clean code, handle errors).Dependencies:
tensorcircuitas the main framework.matplotlibfor plotting if necessary.6. Verification
To be considered complete, please provide:
blackandpylinthave been run.7. Checklist
I have checked that this paper hasn't been reproduced in the repo yet.
The script is self-contained and runnable.
The docstring includes the correct arXiv/DOI link.
black formatting applied.
pylint check passed.