Spaces:
Sleeping
Sleeping
cvargas
commited on
Commit
·
275f5eb
1
Parent(s):
90ff615
local commit
Browse files- .gitattributes +1 -0
- app.py +4 -0
- data/dataset.csv.zip +3 -0
- docs/dh500-hw2.pdf +0 -0
- docs/hw2_dh500-lecture3-p2.pdf +0 -0
- hw2-dh500-cvargas.ipynb +58 -0
- rrequirements.txt +150 -0
.gitattributes
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
|
|
1 |
+
*.csv filter=lfs diff=lfs merge=lfs -text
|
2 |
*.7z filter=lfs diff=lfs merge=lfs -text
|
3 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
4 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
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)
|
data/dataset.csv.zip
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d75c911a160abc6a29290af1266d7e5c8f0a8fb15545012d6a51dc0b2231e6c9
|
3 |
+
size 9371485
|
docs/dh500-hw2.pdf
ADDED
Binary file (61.1 kB). View file
|
|
docs/hw2_dh500-lecture3-p2.pdf
ADDED
Binary file (992 kB). View file
|
|
hw2-dh500-cvargas.ipynb
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"metadata": {},
|
5 |
+
"cell_type": "markdown",
|
6 |
+
"source": [
|
7 |
+
"# Homework 2 - DH-500\n",
|
8 |
+
"## Analysing Twitter "
|
9 |
+
],
|
10 |
+
"id": "6eee1bc06b03d39b"
|
11 |
+
},
|
12 |
+
{
|
13 |
+
"cell_type": "code",
|
14 |
+
"id": "initial_id",
|
15 |
+
"metadata": {
|
16 |
+
"collapsed": true,
|
17 |
+
"jupyter": {
|
18 |
+
"is_executing": true
|
19 |
+
}
|
20 |
+
},
|
21 |
+
"source": [
|
22 |
+
"student = 'Carlos Alberto Vargas Rivera'\n",
|
23 |
+
"sciper = '384891'"
|
24 |
+
],
|
25 |
+
"outputs": [],
|
26 |
+
"execution_count": null
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"metadata": {},
|
30 |
+
"cell_type": "code",
|
31 |
+
"outputs": [],
|
32 |
+
"execution_count": null,
|
33 |
+
"source": "",
|
34 |
+
"id": "5408e62813b4c435"
|
35 |
+
}
|
36 |
+
],
|
37 |
+
"metadata": {
|
38 |
+
"kernelspec": {
|
39 |
+
"display_name": "Python 3",
|
40 |
+
"language": "python",
|
41 |
+
"name": "python3"
|
42 |
+
},
|
43 |
+
"language_info": {
|
44 |
+
"codemirror_mode": {
|
45 |
+
"name": "ipython",
|
46 |
+
"version": 2
|
47 |
+
},
|
48 |
+
"file_extension": ".py",
|
49 |
+
"mimetype": "text/x-python",
|
50 |
+
"name": "python",
|
51 |
+
"nbconvert_exporter": "python",
|
52 |
+
"pygments_lexer": "ipython2",
|
53 |
+
"version": "2.7.6"
|
54 |
+
}
|
55 |
+
},
|
56 |
+
"nbformat": 4,
|
57 |
+
"nbformat_minor": 5
|
58 |
+
}
|
rrequirements.txt
ADDED
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
anyio==4.3.0
|
2 |
+
argon2-cffi==23.1.0
|
3 |
+
argon2-cffi-bindings==21.2.0
|
4 |
+
arrow==1.3.0
|
5 |
+
asttokens==2.4.1
|
6 |
+
async-lru==2.0.4
|
7 |
+
attrs==23.2.0
|
8 |
+
Babel==2.14.0
|
9 |
+
backcall==0.2.0
|
10 |
+
beautifulsoup4==4.12.3
|
11 |
+
bleach==6.1.0
|
12 |
+
bokeh==3.4.1
|
13 |
+
certifi==2024.2.2
|
14 |
+
cffi==1.16.0
|
15 |
+
charset-normalizer==3.3.2
|
16 |
+
comm==0.1.4
|
17 |
+
conllu==4.5.3
|
18 |
+
contourpy==1.2.1
|
19 |
+
cycler==0.12.1
|
20 |
+
debugpy==1.8.1
|
21 |
+
decorator==5.1.1
|
22 |
+
defusedxml==0.7.1
|
23 |
+
emoji==2.8.0
|
24 |
+
executing==2.0.1
|
25 |
+
fastjsonschema==2.19.1
|
26 |
+
filelock==3.13.4
|
27 |
+
fonttools==4.51.0
|
28 |
+
fqdn==1.5.1
|
29 |
+
fsspec==2023.10.0
|
30 |
+
future==1.0.0
|
31 |
+
h11==0.14.0
|
32 |
+
httpcore==1.0.5
|
33 |
+
httpx==0.27.0
|
34 |
+
idna==3.7
|
35 |
+
ipykernel==6.26.0
|
36 |
+
ipython==8.23.0
|
37 |
+
isoduration==20.11.0
|
38 |
+
jedi==0.19.1
|
39 |
+
Jinja2==3.1.3
|
40 |
+
joblib==1.3.2
|
41 |
+
json5==0.9.25
|
42 |
+
jsonpointer==2.4
|
43 |
+
jsonschema==4.21.1
|
44 |
+
jsonschema-specifications==2023.12.1
|
45 |
+
jupyter-events==0.10.0
|
46 |
+
jupyter-lsp==2.2.5
|
47 |
+
jupyter_client==8.5.0
|
48 |
+
jupyter_core==5.5.0
|
49 |
+
jupyter_server==2.14.0
|
50 |
+
jupyter_server_terminals==0.5.3
|
51 |
+
jupyterlab==4.1.6
|
52 |
+
jupyterlab_pygments==0.3.0
|
53 |
+
jupyterlab_server==2.26.0
|
54 |
+
kiwisolver==1.4.5
|
55 |
+
lazy_loader==0.4
|
56 |
+
markdown-it-py==3.0.0
|
57 |
+
MarkupSafe==2.1.5
|
58 |
+
matplotlib==3.8.4
|
59 |
+
matplotlib-inline==0.1.6
|
60 |
+
mdurl==0.1.2
|
61 |
+
mistune==3.0.2
|
62 |
+
mpmath==1.3.0
|
63 |
+
nbclient==0.10.0
|
64 |
+
nbconvert==7.16.3
|
65 |
+
nbformat==5.10.4
|
66 |
+
nest-asyncio==1.5.8
|
67 |
+
networkx==3.2.1
|
68 |
+
nltk==3.8.1
|
69 |
+
notebook==7.1.2
|
70 |
+
notebook_shim==0.2.4
|
71 |
+
numpy==1.26.4
|
72 |
+
nvidia-cublas-cu12==12.1.3.1
|
73 |
+
nvidia-cuda-cupti-cu12==12.1.105
|
74 |
+
nvidia-cuda-nvrtc-cu12==12.1.105
|
75 |
+
nvidia-cuda-runtime-cu12==12.1.105
|
76 |
+
nvidia-cudnn-cu12==8.9.2.26
|
77 |
+
nvidia-cufft-cu12==11.0.2.54
|
78 |
+
nvidia-curand-cu12==10.3.2.106
|
79 |
+
nvidia-cusolver-cu12==11.4.5.107
|
80 |
+
nvidia-cusparse-cu12==12.1.0.106
|
81 |
+
nvidia-nccl-cu12==2.18.1
|
82 |
+
nvidia-nvjitlink-cu12==12.3.52
|
83 |
+
nvidia-nvtx-cu12==12.1.105
|
84 |
+
overrides==7.7.0
|
85 |
+
packaging==24.0
|
86 |
+
pamela==1.1.0
|
87 |
+
pandas==2.0.3
|
88 |
+
pandocfilters==1.5.1
|
89 |
+
parso==0.8.3
|
90 |
+
patsy==0.5.6
|
91 |
+
pexpect==4.9.0
|
92 |
+
pickleshare==0.7.5
|
93 |
+
pillow==10.3.0
|
94 |
+
platformdirs==4.2.0
|
95 |
+
plotly==5.20.0
|
96 |
+
plotly-express==0.4.1
|
97 |
+
ply==3.11
|
98 |
+
prometheus_client==0.20.0
|
99 |
+
prompt-toolkit==3.0.43
|
100 |
+
protobuf==5.26.1
|
101 |
+
psutil==5.9.6
|
102 |
+
ptyprocess==0.7.0
|
103 |
+
pure-eval==0.2.2
|
104 |
+
pure-sasl==0.6.2
|
105 |
+
pycparser==2.22
|
106 |
+
Pygments==2.17.2
|
107 |
+
PyHive==0.7.0
|
108 |
+
pyparsing==3.1.2
|
109 |
+
python-dateutil==2.9.0.post0
|
110 |
+
python-json-logger==2.0.7
|
111 |
+
pytz==2024.1
|
112 |
+
PyYAML==6.0.1
|
113 |
+
pyzmq==25.1.1
|
114 |
+
referencing==0.34.0
|
115 |
+
requests==2.31.0
|
116 |
+
rfc3339-validator==0.1.4
|
117 |
+
rfc3986-validator==0.1.1
|
118 |
+
rpds-py==0.18.0
|
119 |
+
scikit-learn==1.4.2
|
120 |
+
scipy==1.13.0
|
121 |
+
seaborn==0.13.2
|
122 |
+
Send2Trash==1.8.3
|
123 |
+
six==1.16.0
|
124 |
+
sniffio==1.3.1
|
125 |
+
soupsieve==2.5
|
126 |
+
stack-data==0.6.3
|
127 |
+
stanza==1.6.1
|
128 |
+
statsmodels==0.14.1
|
129 |
+
sympy==1.12
|
130 |
+
tenacity==8.2.3
|
131 |
+
terminado==0.18.1
|
132 |
+
threadpoolctl==3.4.0
|
133 |
+
thrift==0.20.0
|
134 |
+
thrift-sasl==0.4.3
|
135 |
+
tinycss2==1.2.1
|
136 |
+
torch==2.1.0
|
137 |
+
tornado==6.3.3
|
138 |
+
tqdm==4.66.1
|
139 |
+
traitlets==5.14.2
|
140 |
+
triton==2.1.0
|
141 |
+
types-python-dateutil==2.9.0.20240316
|
142 |
+
typing_extensions==4.11.0
|
143 |
+
tzdata==2024.1
|
144 |
+
uri-template==1.3.0
|
145 |
+
urllib3==2.2.1
|
146 |
+
wcwidth==0.2.13
|
147 |
+
webcolors==1.13
|
148 |
+
webencodings==0.5.1
|
149 |
+
websocket-client==1.7.0
|
150 |
+
xyzservices==2024.4.0
|