File size: 6,608 Bytes
53e3071
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
---
library_name: "ofoldx"
tags:
  - "biology"
  - "biomolecular-design"
  - "protein"
  - "rna"
  - "dna"
  - "model"
  - "proteinmpnn"
  - "design-generation"
  - "protein-design"
artifact_kind: "model"
repo_id: "oteam/proteinmpnn-noise002"
license: "mit"
pipeline_tag: "other"
task: "design_generation"
model-index:
  - name: "proteinmpnn-noise002"
    results:
      []
widget:
  - pipeline_tag: "other"
    task: "design_generation"
    example_title: "Backbone sequence design"
    text: "input_structure: backbone.cif\ndesign_chains: A"
    input_format: "structure_path"
  - pipeline_tag: "other"
    task: "design_generation"
    example_title: "Binder design"
    text: "target_structure: target.cif\ntarget_chains: A\ndesign_chains: B"
    input_format: "structure_path"
---

# proteinmpnn-noise002

OFoldX `model` artifact for biomolecular design generation, using the `proteinmpnn` architecture.

## Disclaimer

This model card was generated by the OFoldX team for an OFoldX `model` artifact.
The upstream model authors did not write this card unless explicitly stated otherwise.

OFoldX is pre-alpha research software. Check the source checkpoint, upstream release, and local validation
before using the artifact for scientific or operational decisions.

## Model Details

ProteinMPNN sequence-design model for protein backbones, including soluble and membrane variants.

Converted ProteinMPNN-family sequence-design checkpoint for fixed-backbone inverse folding.

### Model Provenance

- **Upstream Project**: ProteinMPNN / LigandMPNN release
- **Source Checkpoint**: `proteinmpnn_v_48_002.pt`
- **Source Release**: [https://github.com/dauparas/LigandMPNN](https://github.com/dauparas/LigandMPNN)
- **Primary Paper**: [Robust deep learning-based protein sequence design using ProteinMPNN](https://doi.org/10.1126/science.add2187)
- **Upstream License**: MIT for upstream ProteinMPNN and LigandMPNN code/model parameters

### Model Specification

| Field | Value |
| ----- | ----- |
| Repository | `oteam/proteinmpnn-noise002` |
| Artifact Kind | `model` |
| Task | `design_generation` |
| Architecture | `proteinmpnn` |
| Entrypoint | `ofoldx.models.proteinmpnn.model.ProteinMPNNDesignGenerator` |
| Config | `config.json` |
| Weights | `model.safetensors` |
| Source Checkpoint | `proteinmpnn_v_48_002.pt` |
| Checkpoint Variant | `proteinmpnn_v_48_002` |
| k-Neighbors | `48` |
| Node Feature Size | `0` |
| Training Noise | `0.02 Angstrom` |

> [!NOTE]
> Source checkpoint: `proteinmpnn_v_48_002.pt`; the public repo suffix records the upstream Gaussian noise variant (0.02 Angstrom).

### Links

- **Hub repository**: [oteam/proteinmpnn-noise002](https://huggingface.co/oteam/proteinmpnn-noise002)
- **Upstream paper**: [Robust deep learning-based protein sequence design using ProteinMPNN](https://doi.org/10.1126/science.add2187)
- **Upstream repository**: [ProteinMPNN / LigandMPNN release](https://github.com/dauparas/ProteinMPNN)
- **Source checkpoint release**: [https://github.com/dauparas/LigandMPNN](https://github.com/dauparas/LigandMPNN)
- **Code**: [`ofoldx/models/proteinmpnn/model.py`](https://github.com/OTeam-AI4S/OFoldX/tree/main/ofoldx/models/proteinmpnn/model.py)
- **Project repository**: [https://github.com/OTeam-AI4S/OFoldX](https://github.com/OTeam-AI4S/OFoldX)
- **Issues**: [https://github.com/OTeam-AI4S/OFoldX/issues](https://github.com/OTeam-AI4S/OFoldX/issues)

## Usage

The artifact depends on the [`ofoldx`](https://github.com/OTeam-AI4S/OFoldX) library. Install it with pip:

```bash
pip install ofoldx
```

### Pipeline Usage

Load the artifact from `oteam/proteinmpnn-noise002` with the OFoldX task pipeline. Use `AutoModel` or `AutoProcessor` only when you need lower-level control:

```python
from ofoldx.pipelines import Pipeline

pipeline = Pipeline.from_pretrained("oteam/proteinmpnn-noise002")
output = pipeline(...)

from ofoldx import AutoModel

model = AutoModel.from_pretrained("oteam/proteinmpnn-noise002")
```

When a matching processor is available, load it with `AutoProcessor.from_pretrained(...)` and pass the
processed batch to the model.

### Interface

- **Task**: `design_generation`
- **Artifact kind**: `model`
- **Architecture**: `proteinmpnn`
- **Runtime files**: `manifest.json`, `config.json`, and `model.safetensors` when present

## Training Details

OFoldX did not train these weights. This repository contains a converted checkpoint and OFoldX runtime
metadata for loading it.

### Training Data

ProteinMPNN was trained for fixed-backbone protein sequence design on PDB biounits with a 2021-08-02 data snapshot. OFoldX does not redistribute the training set.

### Training Procedure

Upstream ProteinMPNN trains graph-neural inverse-folding models with 48-neighbor checkpoints and multiple Gaussian backbone-noise variants. OFoldX converts released ProteinMPNN-family checkpoints into `model.safetensors`; it does not run ProteinMPNN training.

## Evaluation

OFoldX conversion reports and contract tests validate artifact structure and checkpoint loading. Task-level
scientific evaluation should be checked against the corresponding upstream model release or paper.

## Limitations

- This artifact is distributed for research use.
- Inputs must match the model-specific processor and expected biomolecular representation.
- OFoldX is pre-alpha, so APIs and artifact metadata may still change before a stable release.

## Citation

Please cite the upstream ProteinMPNN / LigandMPNN release work for the source checkpoint. If OFoldX supports your work, please also cite or link the OFoldX project repository.

```bibtex
@article{dauparas2022robust,
  author = {Dauparas, Justas and Anishchenko, Ivan and Bennett, Nathaniel and Bai, Hua and Ragotte, Robert J. and Milles, Lukas F. and Wicky, Basile I. M. and Courbet, Alexis and de Haas, Rob J. and Bethel, Neville and others},
  title = {Robust deep learning-based protein sequence design using ProteinMPNN},
  journal = {Science},
  volume = {378},
  number = {6615},
  pages = {49--56},
  year = {2022},
  doi = {10.1126/science.add2187}
}
```

## Contact

Please use [OFoldX GitHub issues](https://github.com/OTeam-AI4S/OFoldX/issues) for questions or comments about this model card.

## License

The Hub `license` metadata, when present, reflects the source checkpoint or upstream project license. The OFoldX project license is not yet finalized.
The source checkpoint is associated with the upstream license noted above: MIT for upstream ProteinMPNN and LigandMPNN code/model parameters. Review both OFoldX and upstream terms before redistribution or production use.