JHao2830 commited on
Commit
b4ef9f3
·
1 Parent(s): afb4341

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -4,6 +4,7 @@ import pickle
4
  import torch
5
  import torch.nn as nn
6
  import numpy as np
 
7
  import pandas as pd
8
  from matplotlib import pyplot as plt
9
 
@@ -184,5 +185,5 @@ outputs = [
184
  ]
185
 
186
  gr.Interface(fn=test, inputs=inputs, outputs=outputs, title="ATBNN Model",
187
- description="加载预训练模型,加载测试数据并进行预测,得到当前循环的最大可用容量。").launch(share=True)
188
 
 
4
  import torch
5
  import torch.nn as nn
6
  import numpy as np
7
+
8
  import pandas as pd
9
  from matplotlib import pyplot as plt
10
 
 
185
  ]
186
 
187
  gr.Interface(fn=test, inputs=inputs, outputs=outputs, title="ATBNN Model",
188
+ description="加载预训练模型,加载测试数据并进行预测,得到当前循环的最大可用容量。").launch()
189