MuskanMjn commited on
Commit
aa40521
1 Parent(s): a9630e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -1,3 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
  # load the coins as a numpy array
3
  orig_coins = coins()
 
1
+ import gradio as gr
2
+
3
+ import time
4
+
5
+ import numpy as np
6
+ from scipy.ndimage import gaussian_filter
7
+ import matplotlib.pyplot as plt
8
+ from skimage.data import coins
9
+ from skimage.transform import rescale
10
+
11
+ from sklearn.feature_extraction import image
12
+ from sklearn.cluster import spectral_clustering
13
+
14
 
15
  # load the coins as a numpy array
16
  orig_coins = coins()