hamel commited on
Commit
a6c0b10
1 Parent(s): f00a4fb

Add application files

Browse files
Files changed (4) hide show
  1. README.md +1 -1
  2. app.ipynb +1 -1
  3. app.md +1 -1
  4. app.py +4 -0
README.md CHANGED
@@ -30,7 +30,7 @@ First, lets specify the libraries we need, which in this case are `gradio` and `
30
 
31
 
32
  ```
33
- #|export app
34
  import gradio as gr
35
  from fastcore.net import urljson, HTTPError
36
  ```
 
30
 
31
 
32
  ```
33
+ #|export
34
  import gradio as gr
35
  from fastcore.net import urljson, HTTPError
36
  ```
app.ipynb CHANGED
@@ -61,7 +61,7 @@
61
  "metadata": {},
62
  "outputs": [],
63
  "source": [
64
- "#|export app\n",
65
  "import gradio as gr\n",
66
  "from fastcore.net import urljson, HTTPError"
67
  ]
 
61
  "metadata": {},
62
  "outputs": [],
63
  "source": [
64
+ "#|export\n",
65
  "import gradio as gr\n",
66
  "from fastcore.net import urljson, HTTPError"
67
  ]
app.md CHANGED
@@ -18,7 +18,7 @@ First, lets specify the libraries we need, which in this case are `gradio` and `
18
 
19
 
20
  ```
21
- #|export app
22
  import gradio as gr
23
  from fastcore.net import urljson, HTTPError
24
  ```
 
18
 
19
 
20
  ```
21
+ #|export
22
  import gradio as gr
23
  from fastcore.net import urljson, HTTPError
24
  ```
app.py CHANGED
@@ -3,6 +3,10 @@
3
  # %% auto 0
4
  __all__ = ['iface', 'size']
5
 
 
 
 
 
6
  # %% app.ipynb 7
7
  def size(repo:str):
8
  "Returns the size in GB of a HuggingFace Dataset."
 
3
  # %% auto 0
4
  __all__ = ['iface', 'size']
5
 
6
+ # %% app.ipynb 6
7
+ import gradio as gr
8
+ from fastcore.net import urljson, HTTPError
9
+
10
  # %% app.ipynb 7
11
  def size(repo:str):
12
  "Returns the size in GB of a HuggingFace Dataset."