Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -68,6 +68,18 @@ cd tox21_gin_classifier
|
|
| 68 |
pip install -r requirements.txt
|
| 69 |
```
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
|
| 72 |
# Inference
|
| 73 |
|
|
|
|
| 68 |
pip install -r requirements.txt
|
| 69 |
```
|
| 70 |
|
| 71 |
+
# Training
|
| 72 |
+
|
| 73 |
+
To train the GIN model from scratch, run:
|
| 74 |
+
|
| 75 |
+
```bash
|
| 76 |
+
python train.py
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
These commands will:
|
| 80 |
+
1. Load and preprocess the Tox21 training dataset
|
| 81 |
+
2. Train a GIN classifier
|
| 82 |
+
3. Store the resulting model in the `checkpoints/` directory.
|
| 83 |
|
| 84 |
# Inference
|
| 85 |
|