Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyruffolo committed Jul 12, 2021
1 parent e21ccd1 commit eec7503
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ source venv/bin/activate
```
Install project dependencies
```
pip install -r requirements
pip install -r requirements.txt
```

_Note_: PyRosetta should be installed following the instructions [here](http://pyrosetta.org/dow).
_Note_: PyRosetta should be installed following the instructions [here](http://pyrosetta.org/downloads).

Download pretrained model weights
```
Expand Down
2 changes: 1 addition & 1 deletion deepab/util/model_out.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get_inputs_from_fasta(fasta_file):


def get_logits_from_model(model, fasta_file, device=None):
"""Gets the probability distribution output of a H3ResNet model"""
"""Gets the probability distribution output of a AbResNet model"""
seq = get_inputs_from_fasta(fasta_file)
if not device == None:
seq = seq.to(device)
Expand Down

0 comments on commit eec7503

Please sign in to comment.