aliabd HF staff commited on
Commit
a52f6d0
·
1 Parent(s): 9bb2a1b

Upload with huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +6 -7
  2. requirements.txt +2 -0
  3. run.py +15 -0
README.md CHANGED
@@ -1,12 +1,11 @@
 
1
  ---
2
- title: Plot Component Main
3
- emoji: 👁
4
- colorFrom: green
5
- colorTo: red
6
  sdk: gradio
7
  sdk_version: 3.6
8
- app_file: app.py
9
  pinned: false
10
  ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+
2
  ---
3
+ title: plot_component_main
4
+ emoji: 🔥
5
+ colorFrom: indigo
6
+ colorTo: indigo
7
  sdk: gradio
8
  sdk_version: 3.6
9
+ app_file: run.py
10
  pinned: false
11
  ---
 
 
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ matplotlib
2
+ numpyhttps://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
run.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import matplotlib.pyplot as plt
3
+ import numpy as np
4
+
5
+ Fs = 8000
6
+ f = 5
7
+ sample = 8000
8
+ x = np.arange(sample)
9
+ y = np.sin(2 * np.pi * f * x / Fs)
10
+ plt.plot(x, y)
11
+
12
+ with gr.Blocks() as demo:
13
+ gr.Plot(value=plt)
14
+
15
+ demo.launch()