File size: 1,393 Bytes
ca54bc7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
license: apache-2.0
task_categories:
  - graph-ml
tags:
  - biology
  - protein
  - molecule
  - dna
  - rna
  - pretraining
---

# Cuttlefish-Encoder-Data

Encoder pretraining dataset for [Cuttlefish-Encoder](https://huggingface.co/zihaojing/Cuttlefish-Encoder). Contains all-atom structural graphs for molecules, proteins, DNA, and RNA in a unified parquet format.

## Dataset structure

```
molecules/   # molecule encoder training data
nacid/       # DNA and RNA encoder training data
protein/     # protein encoder training data (PDB structures)
test/        # held-out test samples
```

## Schema

| Field | Description |
|---|---|
| `modality` | `"molecule"`, `"protein"`, `"dna"`, or `"rna"` |
| `node_feat` | Atom/node features (N × d) |
| `pos` | 3D coordinates in Å (N × 3) |
| `edge_index` | Spatial graph edges in COO (2 × E) |
| `edge_feat_dist` | Edge distances (E × 1, optional) |

## Usage

```python
from datasets import load_dataset
ds = load_dataset("zihaojing/Cuttlefish-Encoder-Data")
```

## Related resources

| Resource | Link |
|---|---|
| Cuttlefish LLM | [zihaojing/Cuttlefish](https://huggingface.co/zihaojing/Cuttlefish) |
| Cuttlefish-Encoder | [zihaojing/Cuttlefish-Encoder](https://huggingface.co/zihaojing/Cuttlefish-Encoder) |
| SFT instruction data | [zihaojing/Cuttlefish-SFT-Data](https://huggingface.co/datasets/zihaojing/Cuttlefish-SFT-Data) |