vahidrezanezhad commited on
Commit
5b0a672
·
1 Parent(s): e3cece8
Files changed (2) hide show
  1. app.py +4 -0
  2. requirements.txt +1 -0
app.py CHANGED
@@ -1,6 +1,10 @@
1
  import gradio as gr
2
  import tensorflow as tf
3
 
 
 
 
 
4
 
5
  def greet(name):
6
  return "Hello " + name + "!!"
 
1
  import gradio as gr
2
  import tensorflow as tf
3
 
4
+ model = from_pretrained_keras("SBB/sbb_binarization")
5
+
6
+ print(model.summary())
7
+
8
 
9
  def greet(name):
10
  return "Hello " + name + "!!"
requirements.txt CHANGED
@@ -3,3 +3,4 @@ opencv-python
3
  tqdm
4
  pandas
5
  seaborn
 
 
3
  tqdm
4
  pandas
5
  seaborn
6
+ huggingface_hub["tensorflow"]