Skip to content

Commit

Permalink
Update ESM1b model ID format to use underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] committed Nov 14, 2024
1 parent 60c0934 commit 84ae01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/analysis/enhanced_sequence_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def __init__(self, config: Dict):
self.hidden_size = config.get('hidden_size', 768)

# Initialize protein language model
self.tokenizer = AutoTokenizer.from_pretrained('facebook/esm1b-t24-1M')
self.protein_model = AutoModel.from_pretrained('facebook/esm1b-t24-1M')
self.tokenizer = AutoTokenizer.from_pretrained('facebook/esm1b_t24_1M')
self.protein_model = AutoModel.from_pretrained('facebook/esm1b_t24_1M')

# Feature extraction layers
self.feature_extractor = nn.Sequential(
Expand Down

0 comments on commit 84ae01e

Please sign in to comment.