Edward Tang commited on
Commit
b04b349
·
1 Parent(s): 49b9fa3
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,13 +1,13 @@
1
  import streamlit as st
2
  from transformers import AutoProcessor, SeamlessM4TModel
3
 
4
- st.title("Ed's Hot Dog? Or Not!!!!!?")
5
 
6
  processor = AutoProcessor.from_pretrained("facebook/hf-seamless-m4t-large")
7
 
8
  model = SeamlessM4TModel.from_pretrained("facebook/hf-seamless-m4t-large")
9
 
10
-
11
  title = st.text_input('hello', "Hello, my dog is cute")
12
 
13
 
 
1
  import streamlit as st
2
  from transformers import AutoProcessor, SeamlessM4TModel
3
 
4
+ st.title("Ed's Awkward Hot Dog? Or Not!!!!!?")
5
 
6
  processor = AutoProcessor.from_pretrained("facebook/hf-seamless-m4t-large")
7
 
8
  model = SeamlessM4TModel.from_pretrained("facebook/hf-seamless-m4t-large")
9
 
10
+ title = "my dog is fat"
11
  title = st.text_input('hello', "Hello, my dog is cute")
12
 
13