nielsr HF Staff commited on
Commit
edacbd4
·
verified ·
1 Parent(s): 068ca59

Update dataset card with paper link, GitHub link, and metadata

Browse files

Hi! I'm Niels from the Hugging Face community science team.

This PR improves the dataset card for the LineageFlow Pfam Assets by:
- Adding the `text-generation` task category to the metadata.
- Updating the license to `mit` based on the GitHub repository information.
- Adding links to the official paper and GitHub repository.
- Including the BibTeX citation for the paper.

These changes help make the dataset more discoverable and ensure that users can properly cite the work.

Files changed (1) hide show
  1. README.md +23 -4
README.md CHANGED
@@ -1,16 +1,22 @@
1
  ---
 
 
 
2
  tags:
3
  - protein-sequence-generation
4
  - bioinformatics
5
  - pfam
6
  - ancestral-sequence-reconstruction
7
  - protein-family
8
- license: other
9
  ---
10
 
11
  # LineageFlow Pfam Assets
12
 
13
- This dataset contains the preprocessed Pfam assets used by the released LineageFlow inference pipeline.
 
 
 
 
14
 
15
  ## Contents
16
 
@@ -22,14 +28,27 @@ This dataset contains the preprocessed Pfam assets used by the released LineageF
22
 
23
  ## Usage
24
 
 
 
25
  ```bash
26
  hf download jinxbye/LineageFlow-assets \
27
  --repo-type dataset \
28
  --local-dir dataset
29
  ```
30
 
31
- The inference scripts expect these assets under `dataset/` by default. All paths can be overridden from the command line.
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  ## Notes
34
 
35
- These files are preprocessed from Pfam family alignments. Please follow the license and usage terms of the original Pfam resource when using the data.
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - text-generation
5
  tags:
6
  - protein-sequence-generation
7
  - bioinformatics
8
  - pfam
9
  - ancestral-sequence-reconstruction
10
  - protein-family
 
11
  ---
12
 
13
  # LineageFlow Pfam Assets
14
 
15
+ This dataset contains the preprocessed Pfam assets used by the released LineageFlow inference pipeline, as presented in the paper [LineageFlow: Flow Matching for High-Fidelity Family-Aware Protein Sequence Generation](https://huggingface.co/papers/2605.22252).
16
+
17
+ **Resources:**
18
+ - **Paper:** [https://huggingface.co/papers/2605.22252](https://huggingface.co/papers/2605.22252)
19
+ - **GitHub:** [https://github.com/Jinx-byebye/LineageFlow](https://github.com/Jinx-byebye/LineageFlow)
20
 
21
  ## Contents
22
 
 
28
 
29
  ## Usage
30
 
31
+ You can download the preprocessed Pfam assets using the Hugging Face CLI:
32
+
33
  ```bash
34
  hf download jinxbye/LineageFlow-assets \
35
  --repo-type dataset \
36
  --local-dir dataset
37
  ```
38
 
39
+ The inference scripts in the GitHub repository expect these assets under `dataset/` by default. All paths can be overridden from the command line.
40
+
41
+ ## Citation
42
+
43
+ ```bibtex
44
+ @inproceedings{liang2026lineageflow,
45
+ title = {LineageFlow: Flow Matching for High-Fidelity Family-Aware Protein Sequence Generation},
46
+ author = {Liang, Langzhang and Yang, Ming and Feng, Yi and Li, Junfan and Pan, Shirui and Xu, Yinghui and Ying, Tianlei and Zheng, Yizhen and Xu, Zenglin},
47
+ booktitle = {Proceedings of the 43rd International Conference on Machine Learning},
48
+ year = {2026}
49
+ }
50
+ ```
51
 
52
  ## Notes
53
 
54
+ These files are preprocessed from Pfam family alignments. Please follow the license and usage terms of the original Pfam resource when using the data.