Skip to content

Latest commit

 

History

History
108 lines (81 loc) · 5.78 KB

File metadata and controls

108 lines (81 loc) · 5.78 KB

🤝 Contributing to Our Repository

Thank you for your interest in contributing to this repository! This project relies on community contributions to stay comprehensive and up-to-date. Your attention as one of our collaborators is greatly appreciated.

📖 Table of Contents


📝 How to Contribute

You can contribute to the project in several ways:

  • ✍️ Adding a New Paper: Share the missing research you find. We always welcome you to contribute your own published papers or pre-prints to our repository through PR or Issues.
  • 🗂️ Adding a New Dataset: Share benchmark datasets used in the field of video generation.
  • 🛠️ Fixing Errors: Correct typos, formatting issues, or broken links.
  • 💡 Suggesting Enhancements: Propose improvements, such as new paper categories, via Issues.

🚀 Your First Contribution

If you're new to contributing, please follow the standard GitHub workflow:

  1. Fork this repository to your personal account.
  2. Create a new feature branch from the main branch. Please use a descriptive branch name, for example:
    # Example: Add a paper named MotionDirector
    git checkout -b feature/add-motiondirector-paper
  3. Make your changes on your new branch (e.g., add a paper or dataset entry).
  4. Commit your changes. Please use a clear commit message to describe your work:
    # Example: Add a new dataset
    git commit -m "feat: Add OpenVid-1M Dataset"
  5. Push your branch to your forked repository:
    git push origin feature/add-motiondirector-paper
  6. Create a Pull Request from your forked repository to the main branch of this repository.

✍️ Guidelines for Adding a New Paper

This is the most common type of contribution. To ensure consistency, please follow these steps carefully:

  1. Find the Correct Location

    • First, identify the main category the paper belongs to (e.g., Text-to-Video, Image-to-Video).
    • Then, find the section for its publication year.
    • Finally, place it in the ✅ Published Papers or 💡 Pre-Print Papers list.
  2. Use the Standard Format Template

    • Please copy the template below and replace the placeholder information. This ensures all entries have a consistent style.

    General Template:

    * **[CONFERENCE YEAR]** ***Paper Title:***<br>
        [![ArXiv](https://img.shields.io/badge/arXiv-PDF-b31b1b?style=for-the-badge&logo=arxiv)](https://arxiv.org/abs/your-arxiv-id)
        [![GitHub](https://img.shields.io/badge/GitHub-Repo-blue?style=for-the-badge&logo=github)](https://github.com/user/repo)
        [![Project Page](https://img.shields.io/badge/Project-Page-blue?style=for-the-badge&logo=googlechrome&logoColor=white)](https://project-page-url.com)
    • If the paper does not have a GitHub repository or a project page, simply delete the corresponding line.
    • If the paper was published at a conference but doesn't have an ArXiv link, you can use the Paper badge. Please refer to existing examples in README.md.
  3. Verify Information

    • Before submitting, please double-check that all links are valid and point to the correct destination.
    • Confirm that the paper title, authors, conference, and year details are accurate.

🗂️ Guidelines for Adding a New Dataset

We also welcome contributions of new, public datasets. Please add a new row to the Datasets table in README.md.

  1. Find the Correct Location

    • Navigate to the 🗂️ Datasets table at the end of the README.md file.
    • Add the new dataset as a new row at the bottom of the table.
  2. Use the Standard Format Template

    • Please copy the Markdown table row template below and replace the placeholder information.

    General Template:

    | **Your Dataset Name** | 2025 | Text, Video | Task (e.g., Text-to-Video) | [![Paper](https://img.shields.io/badge/Paper-Link-red?style=for-the-badge)](https://paper-url.com) | [![Website](https://img.shields.io/badge/Website-Link-orange?style=for-the-badge)](https://dataset-website-url.com) |
    • Please ensure there are spaces around the | pipe characters to maintain correct table formatting.
    • If the dataset does not have an associated paper, you can replace the Paper cell content with N/A.
  3. Verify Information

    • Before submitting, please ensure the links to the paper and dataset website are valid.
    • Confirm that the dataset name, year, modalities, and task description are accurate.

📥 Pull Request Process

When you submit a Pull Request, please keep the following in mind:

  • Provide a clear title for your PR, e.g., feat: Add 3 new papers from CVPR 2025.
  • Briefly describe the changes you've made in the description.
  • After submission, the maintainers will review your contribution as soon as possible. Thank you for your patience!