Spaces:
Runtime error
Runtime error
Matt C
commited on
Commit
·
19c4297
1
Parent(s):
bf79d0d
tweak
Browse files
app.py
CHANGED
@@ -20,6 +20,7 @@ batch = tokenizer.encode('txt', return_tensors='pt')
|
|
20 |
|
21 |
# inference
|
22 |
result = model(batch)
|
|
|
23 |
|
24 |
-
fig = px.bar(result, x="", y="", orientation='h')
|
25 |
-
fig.show()
|
|
|
20 |
|
21 |
# inference
|
22 |
result = model(batch)
|
23 |
+
print(result)
|
24 |
|
25 |
+
#fig = px.bar(result, x="", y="", orientation='h')
|
26 |
+
#fig.show()
|