nambiar4 commited on
Commit
fd2a35c
·
1 Parent(s): 2511ec8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -13,17 +13,18 @@ examples = [
13
 
14
  def get_out(sent):
15
  prefix = ""
16
- if len(sent)>1024:
17
- sent = sent[:1024]
18
- prefix = "Your protein was longer than 1024 AAs. We are working on including longer sequences but in the meantime, here are the scores for the first 1024 AAs: "
 
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 = np.array2string(output, precision=4, separator=',',
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
  [