Josh Tan commited on
Commit
1bc534a
1 Parent(s): 097cf06

First commit.

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. app.py +4 -0
  3. requirements.txt +104 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ .env/
2
+ .vscode/
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ x = st.slider("Select a value")
4
+ st.write(x, "squared is", x * x)
requirements.txt ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ altair==4.2.0
2
+ appnope==0.1.3
3
+ argon2-cffi==21.3.0
4
+ argon2-cffi-bindings==21.2.0
5
+ asttokens==2.0.5
6
+ attrs==21.4.0
7
+ backcall==0.2.0
8
+ backports.zoneinfo==0.2.1
9
+ beautifulsoup4==4.11.1
10
+ bleach==5.0.0
11
+ blinker==1.4
12
+ cachetools==5.0.0
13
+ certifi==2021.10.8
14
+ cffi==1.15.0
15
+ charset-normalizer==2.0.12
16
+ click==8.0.4
17
+ debugpy==1.6.0
18
+ decorator==5.1.1
19
+ defusedxml==0.7.1
20
+ entrypoints==0.4
21
+ executing==0.8.3
22
+ fastjsonschema==2.15.3
23
+ filelock==3.6.0
24
+ gitdb==4.0.9
25
+ GitPython==3.1.27
26
+ huggingface-hub==0.5.1
27
+ idna==3.3
28
+ importlib-metadata==4.11.3
29
+ importlib-resources==5.7.1
30
+ ipykernel==6.13.0
31
+ ipython==8.3.0
32
+ ipython-genutils==0.2.0
33
+ ipywidgets==7.7.0
34
+ jedi==0.18.1
35
+ Jinja2==3.1.2
36
+ joblib==1.1.0
37
+ jsonschema==4.5.1
38
+ jupyter-client==7.3.1
39
+ jupyter-core==4.10.0
40
+ jupyterlab-pygments==0.2.2
41
+ jupyterlab-widgets==1.1.0
42
+ MarkupSafe==2.1.1
43
+ matplotlib-inline==0.1.3
44
+ mistune==0.8.4
45
+ nbclient==0.6.3
46
+ nbconvert==6.5.0
47
+ nbformat==5.4.0
48
+ nest-asyncio==1.5.5
49
+ notebook==6.4.11
50
+ numpy==1.22.3
51
+ packaging==21.3
52
+ pandas==1.4.2
53
+ pandocfilters==1.5.0
54
+ parso==0.8.3
55
+ pexpect==4.8.0
56
+ pickleshare==0.7.5
57
+ Pillow==9.1.0
58
+ prometheus-client==0.14.1
59
+ prompt-toolkit==3.0.29
60
+ protobuf==3.20.1
61
+ psutil==5.9.0
62
+ ptyprocess==0.7.0
63
+ pure-eval==0.2.2
64
+ pyarrow==8.0.0
65
+ pycparser==2.21
66
+ pydeck==0.7.1
67
+ Pygments==2.12.0
68
+ Pympler==1.0.1
69
+ pyparsing==3.0.8
70
+ pyrsistent==0.18.1
71
+ python-dateutil==2.8.2
72
+ pytz==2022.1
73
+ pytz-deprecation-shim==0.1.0.post0
74
+ PyYAML==6.0
75
+ pyzmq==22.3.0
76
+ regex==2022.4.24
77
+ requests==2.27.1
78
+ sacremoses==0.0.53
79
+ semver==2.13.0
80
+ Send2Trash==1.8.0
81
+ six==1.16.0
82
+ smmap==5.0.0
83
+ soupsieve==2.3.2.post1
84
+ stack-data==0.2.0
85
+ streamlit==1.9.0
86
+ terminado==0.13.3
87
+ tinycss2==1.1.1
88
+ tokenizers==0.12.1
89
+ toml==0.10.2
90
+ toolz==0.11.2
91
+ torch==1.11.0
92
+ tornado==6.1
93
+ tqdm==4.64.0
94
+ traitlets==5.1.1
95
+ transformers==4.18.0
96
+ typing_extensions==4.2.0
97
+ tzdata==2022.1
98
+ tzlocal==4.2
99
+ urllib3==1.26.9
100
+ validators==0.19.0
101
+ wcwidth==0.2.5
102
+ webencodings==0.5.1
103
+ widgetsnbextension==3.6.0
104
+ zipp==3.8.0