File size: 3,728 Bytes
d6bc67d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
library_name: jax
tags:
  - protein-structure-prediction
  - alphafold3
  - jax
  - equinox
  - biology
---

# Protenij β€” JAX/Equinox weights for Protenix

This repository hosts JAX/Equinox-converted model weights (and a mirror of the
original PyTorch `protenix-v2` checkpoint) for use with
[protenij](https://github.com/escalante-bio/protenij), a JAX/Equinox translation
of [Protenix](https://github.com/bytedance/Protenix), ByteDance's implementation
of the AlphaFold 3 architecture.

The JAX/Equinox weights are format conversions of the original PyTorch
checkpoints released by ByteDance β€” the underlying model parameters are
numerically identical, only the serialization format has changed (PyTorch `.pt`
β†’ Equinox `.eqx` + pickled skeleton).

## Files

| File | Format | Size | Source |
| --- | --- | --- | --- |
| `protenix-v2.eqx` / `protenix-v2.skeleton.pkl` | Equinox | 1.86 GB | Converted from `protenix-v2.pt` |
| `protenix-v2.pt` | PyTorch | 1.86 GB | Mirror of upstream ByteDance release |
| `protenix_base_default_v1.0.0.eqx` / `.skeleton.pkl` | Equinox | β€” | Converted from upstream |
| `protenix_base_20250630_v1.0.0.eqx` / `.skeleton.pkl` | Equinox | β€” | Converted from upstream |
| `protenix_mini_default_v0.5.0.eqx` / `.skeleton.pkl` | Equinox | β€” | Converted from upstream |
| `protenix_tiny_default_v0.5.0.eqx` / `.skeleton.pkl` | Equinox | β€” | Converted from upstream |
| `components.v20240608.cif` | Data | β€” | CCD chemical components (upstream) |
| `components.v20240608.cif.rdkit_mol.pkl` | Data | β€” | CCD rdkit mol cache (upstream) |
| `clusters-by-entity-40.txt` | Data | β€” | PDB entity-40 clusters (upstream) |

## Usage

```python
from protenix.backend import load_model
model = load_model("protenix-v2")  # auto-downloads from this repo
```

## License and attribution

Released under the **Apache License 2.0**, matching the upstream
[bytedance/Protenix](https://github.com/bytedance/Protenix) project.

The upstream Protenix README explicitly states:

> "The Protenix project including both code and model parameters is released
> under the Apache 2.0 License. It is free for both academic research and
> commercial use."

### Modification notice (Apache 2.0 Β§4(b))

The `.eqx` and `.skeleton.pkl` files in this repository are **format
conversions** of the original PyTorch checkpoints released by ByteDance. The
PyTorch state dicts were loaded and the tensors re-serialized in Equinox format
using
[`protenix/backend.py`](https://github.com/escalante-bio/protenij/blob/main/protenix/backend.py)
and
[`translate_models.py`](https://github.com/escalante-bio/protenij/blob/main/translate_models.py).
No weights were retrained, fine-tuned, or otherwise numerically modified.

The `protenix-v2.pt` file in this repository is a bit-for-bit mirror of the
original PyTorch checkpoint hosted at
`https://protenix.tos-cn-beijing.volces.com/checkpoint/protenix-v2.pt` (mirrored
here after the upstream URL became unreachable).

### Copyright notice (Apache 2.0 Β§4(c))

Copyright 2024 ByteDance and/or its affiliates. The original Protenix code and
model parameters were released under Apache License 2.0. See the `LICENSE` file
in this repository for the full license text.

### Citations

If you use these weights, please cite the original Protenix work:

- Protenix repository: https://github.com/bytedance/Protenix
- Protenix technical reports in `docs/` of the upstream repository

## Disclaimer

These files are provided as-is. The weights are format conversions only β€” for
the authoritative source and for training code, model cards, and technical
reports, refer to the [upstream ByteDance Protenix
repository](https://github.com/bytedance/Protenix).