Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,17 +13,18 @@ examples = [
|
|
13 |
|
14 |
def get_out(sent):
|
15 |
prefix = ""
|
16 |
-
if len(sent)>
|
17 |
-
sent = sent[:
|
18 |
-
prefix = "Your protein was longer than
|
|
|
19 |
encoded = tokenizer.encode_plus(sent, return_tensors="pt")
|
20 |
with torch.no_grad():
|
21 |
output = model(**encoded)
|
22 |
output = F.softmax(torch.squeeze(output['logits']))[1:-1,1].detach().numpy()
|
23 |
-
output =
|
24 |
-
suppress_small=True)
|
25 |
return prefix+output
|
26 |
|
|
|
27 |
gr.Interface(
|
28 |
get_out,
|
29 |
[
|
|
|
13 |
|
14 |
def get_out(sent):
|
15 |
prefix = ""
|
16 |
+
if len(sent)>1022:
|
17 |
+
sent = sent[:1022]
|
18 |
+
prefix = "Your protein was longer than 1022 AAs. We are working on including longer sequences but in the meantime, here are the scores for the first 1022 AAs: \n "
|
19 |
+
print(sent)
|
20 |
encoded = tokenizer.encode_plus(sent, return_tensors="pt")
|
21 |
with torch.no_grad():
|
22 |
output = model(**encoded)
|
23 |
output = F.softmax(torch.squeeze(output['logits']))[1:-1,1].detach().numpy()
|
24 |
+
output = ','.join(str(x) for x in output)
|
|
|
25 |
return prefix+output
|
26 |
|
27 |
+
|
28 |
gr.Interface(
|
29 |
get_out,
|
30 |
[
|