Spaces:
Sleeping
Sleeping
João Pedro
commited on
Commit
·
373fa9f
1
Parent(s):
dafbc40
stop printing encondings
Browse files
app.py
CHANGED
@@ -53,7 +53,6 @@ if uploaded_file:
|
|
53 |
truncation=True,
|
54 |
max_length=512,
|
55 |
)
|
56 |
-
st.text(f'encoding shape: {encoding}')
|
57 |
outputs = model(**encoding)
|
58 |
prediction = outputs.logits.argmax(-1)[0].item()
|
59 |
|
|
|
53 |
truncation=True,
|
54 |
max_length=512,
|
55 |
)
|
|
|
56 |
outputs = model(**encoding)
|
57 |
prediction = outputs.logits.argmax(-1)[0].item()
|
58 |
|