Instructions to use luca0621/polyedit-repo-retrained with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use luca0621/polyedit-repo-retrained with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-3B-Instruct") model = PeftModel.from_pretrained(base_model, "luca0621/polyedit-repo-retrained") - Notebooks
- Google Colab
- Kaggle
Add portable adapter metadata and model card
Browse files- training_meta.json +11 -0
training_meta.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label": "RePO-polymer-retrained (not an upstream checkpoint)",
|
| 3 |
+
"upstream_code": "https://github.com/tmlr-group/RePO",
|
| 4 |
+
"base_model": "Qwen/Qwen2.5-3B-Instruct",
|
| 5 |
+
"examples": 4096,
|
| 6 |
+
"steps": 256,
|
| 7 |
+
"properties": ["Egc", "Egb", "Eea", "Ei", "EPS", "Nc", "Xc", "Eat"],
|
| 8 |
+
"split": "PolyEdit train components only",
|
| 9 |
+
"seed": 42,
|
| 10 |
+
"reward": "RDKit polymer validity + locality + train-only property verifier"
|
| 11 |
+
}
|