hqasmei commited on
Commit
cf32da6
·
1 Parent(s): 269d6bf

Added more dependences

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -1,4 +1,12 @@
 
 
 
 
 
 
 
1
  import gradio as gr
 
2
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
 
1
+ import pandas as pd
2
+ import numpy as np
3
+ from zipfile import ZipFile
4
+ import tensorflow as tf
5
+ from tensorflow import keras
6
+ from pathlib import Path
7
+ import matplotlib.pyplot as plt
8
  import gradio as gr
9
+ from huggingface_hub import from_pretrained_keras
10
 
11
  def greet(name):
12
  return "Hello " + name + "!!"