Downloading Pre-trained Weights
The Google Drive link for downloading the ProteoScribe pre-trained weights will be added here soon.
File Details
- File Name: ProteoScribe pre-trained weights (TBD).
- Description: Pre-trained weights for the ProteoScribe model.
Usage
Once available, you can load the weights into your model using PyTorch:
import torch
model = YourProteoScribeModel() # Replace with your model class
model.load_state_dict(torch.load("weights/ProteoScribe/ProteoScribe_weights.bin", map_location="cpu"))
model.eval()