|
|
|
--- |
|
|
|
|
|
|
|
```markdown |
|
|
|
|
|
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() |
|
|
|
|