nielsr HF Staff commited on
Commit
022ae4e
·
verified ·
1 Parent(s): f403c81

Add pipeline tag and update paper link

Browse files

This PR improves the model card by:
1. Adding the `pipeline_tag: text-generation` to the YAML metadata to ensure the model is discoverable in the correct category on the Hub.
2. Updating the placeholder paper link to point to the [Text2Score research paper](https://huggingface.co/papers/2605.13431).
3. Maintaining the existing detailed instructions for installation, inference, and citation.

Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -1,14 +1,15 @@
1
  ---
 
 
2
  language:
3
  - en
4
  license: apache-2.0
 
5
  tags:
6
  - music
7
  - text-to-music
8
  - sheet-music
9
  - pytorch
10
- datasets:
11
- - emotionwave-company/text2score
12
  ---
13
 
14
  # Text2Score: Generating Sheet Music From Textual Prompts
@@ -16,9 +17,9 @@ datasets:
16
  [![GitHub Repo](https://img.shields.io/badge/GitHub-Codebase-blue)](https://github.com/keshavbhandari/text2score)
17
  [![Demo](https://img.shields.io/badge/Demo-Live-brightgreen)](https://keshavbhandari.github.io/portfolio/text2score)
18
  [![Dataset](https://img.shields.io/badge/Dataset-HuggingFace-yellow)](https://huggingface.co/datasets/emotionwave-company/text2score)
19
- [![Paper](https://img.shields.io/badge/Paper-Arxiv_TBD-red)](#)
20
 
21
- This repository hosts the pre-trained model weights for **Text2Score**, a model designed to generate sheet music directly from text prompts.
22
 
23
  **Note on Usage:** To use this model, you do not need to download these weights manually. The inference scripts in our primary GitHub repository are configured to automatically download this checkpoint the first time you run them.
24
 
 
1
  ---
2
+ datasets:
3
+ - emotionwave-company/text2score
4
  language:
5
  - en
6
  license: apache-2.0
7
+ pipeline_tag: text-generation
8
  tags:
9
  - music
10
  - text-to-music
11
  - sheet-music
12
  - pytorch
 
 
13
  ---
14
 
15
  # Text2Score: Generating Sheet Music From Textual Prompts
 
17
  [![GitHub Repo](https://img.shields.io/badge/GitHub-Codebase-blue)](https://github.com/keshavbhandari/text2score)
18
  [![Demo](https://img.shields.io/badge/Demo-Live-brightgreen)](https://keshavbhandari.github.io/portfolio/text2score)
19
  [![Dataset](https://img.shields.io/badge/Dataset-HuggingFace-yellow)](https://huggingface.co/datasets/emotionwave-company/text2score)
20
+ [![Paper](https://img.shields.io/badge/Paper-Arxiv-red)](https://huggingface.co/papers/2605.13431)
21
 
22
+ This repository hosts the pre-trained model weights for **Text2Score**, a model designed to generate sheet music directly from text prompts. The model is described in the paper [Text2Score: Generating Sheet Music From Textual Prompts](https://huggingface.co/papers/2605.13431).
23
 
24
  **Note on Usage:** To use this model, you do not need to download these weights manually. The inference scripts in our primary GitHub repository are configured to automatically download this checkpoint the first time you run them.
25