File size: 882 Bytes
f782d11 |
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 |
---
### **`weights/Facilitator/README.md`**
```markdown
# Facilitator Pre-trained Weights
This folder will contain the pre-trained weights for the **Facilitator** model. The Facilitator model is part of the BioM3 pipeline and serves as a key component for further alignment or generation tasks.
---
## **Downloading Pre-trained Weights**
The Google Drive link for downloading the Facilitator pre-trained weights will be added here soon.
---
## **File Details**
- **File Name**: Facilitator pre-trained weights (TBD).
- **Description**: Pre-trained weights for the Facilitator model.
---
## **Usage**
Once available, the pre-trained weights can be loaded as follows:
```python
import torch
model = YourFacilitatorModel() # Replace with your model class
model.load_state_dict(torch.load("weights/Facilitator/Facilitator_weights.bin", map_location="cpu"))
model.eval()
|