Sophia Tang
commited on
Commit
·
eeeef3f
1
Parent(s):
303c2e0
add environment.yml
Browse files- .gitignore +2 -1
- README.md +1 -1
- assets/{anim-good.gif → tr2d2-anim.gif} +0 -0
- tr2d2-pep/environment.yml +21 -0
.gitignore
CHANGED
|
@@ -14,4 +14,5 @@ tr2d2-pep/utils/__pycache__/
|
|
| 14 |
*.log
|
| 15 |
*.ipynb
|
| 16 |
*.pt
|
| 17 |
-
tr2d2-pep/scoring/functions/classifiers/best_model.pt
|
|
|
|
|
|
| 14 |
*.log
|
| 15 |
*.ipynb
|
| 16 |
*.pt
|
| 17 |
+
tr2d2-pep/scoring/functions/classifiers/best_model.pt
|
| 18 |
+
.gitignore
|
README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
[**Sophia Tang**](https://sophtang.github.io/)\*, [**Yuchen Zhu**](https://yuchen-zhu-zyc.github.io/)\*, [**Molei Tao**](https://mtao8.math.gatech.edu/), and [**Pranam Chatterjee**](https://www.chatterjeelab.com/)
|
| 6 |
|
| 7 |
-
** 🤖🌳. It is partially built on the **[PepTune repo](https://github.com/programmablebio/peptune)** ([Tang et al. 2024](https://arxiv.org/abs/2412.17780)) and **MDNS** ([Zhu et al. 2025](https://arxiv.org/abs/2508.10684)).
|
| 10 |
|
|
|
|
| 4 |
|
| 5 |
[**Sophia Tang**](https://sophtang.github.io/)\*, [**Yuchen Zhu**](https://yuchen-zhu-zyc.github.io/)\*, [**Molei Tao**](https://mtao8.math.gatech.edu/), and [**Pranam Chatterjee**](https://www.chatterjeelab.com/)
|
| 6 |
|
| 7 |
+

|
| 8 |
|
| 9 |
This is the repository for **[TR2-D2: Tree Search Guided Trajectory-Aware Fine-Tuning for Discrete Diffusion](https://arxiv.org/abs/2509.25171)** 🤖🌳. It is partially built on the **[PepTune repo](https://github.com/programmablebio/peptune)** ([Tang et al. 2024](https://arxiv.org/abs/2412.17780)) and **MDNS** ([Zhu et al. 2025](https://arxiv.org/abs/2508.10684)).
|
| 10 |
|
assets/{anim-good.gif → tr2d2-anim.gif}
RENAMED
|
File without changes
|
tr2d2-pep/environment.yml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: tr2d2-pep
|
| 2 |
+
channels:
|
| 3 |
+
- conda-forge
|
| 4 |
+
dependencies:
|
| 5 |
+
- python=3.10
|
| 6 |
+
- pip
|
| 7 |
+
- rdkit
|
| 8 |
+
- numpy
|
| 9 |
+
- pandas
|
| 10 |
+
- scikit-learn
|
| 11 |
+
- jupyterlab
|
| 12 |
+
- matplotlib-base
|
| 13 |
+
- seaborn
|
| 14 |
+
- tqdm
|
| 15 |
+
- pyyaml
|
| 16 |
+
- torchvision
|
| 17 |
+
- pytorch-cuda=12.4
|
| 18 |
+
- pip:
|
| 19 |
+
- pytorch-lightning==2.5.5
|
| 20 |
+
- fair-esm==2.0.0
|
| 21 |
+
- transformers==4.56.2
|