aj2614@nyu.edu commited on
Commit
54556be
1 Parent(s): 10d9e34

barebones functionality and a lockfile

Browse files
language-models-project/Pipfile ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [[source]]
2
+ url = "https://pypi.org/simple"
3
+ verify_ssl = true
4
+ name = "pypi"
5
+
6
+ [packages]
7
+ kedro = "*"
8
+ torch = "*"
9
+ transformers = {extras = ["torch"], version = "*"}
10
+ pandas = "*"
11
+ numpy = "*"
12
+ jupyterlab = "*"
13
+ sentencepiece = "*"
14
+ protobuf = "==3.20.*"
15
+
16
+ [dev-packages]
17
+
18
+ [requires]
19
+ python_version = "3.10.*"
language-models-project/Pipfile.lock ADDED
The diff for this file is too large to render. See raw diff
 
language-models-project/README.md CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  Installation instructions
2
 
3
  ```docker compose run dev-environment```
 
1
+ ---
2
+ title: Milestone 2
3
+ emoji: 📹
4
+ colorFrom: blue
5
+ colorTo: red
6
+ sdk: streamlit
7
+ app_file: language-models-project/app.py
8
+ pinned: false
9
+ ---
10
+
11
+ # image2textapp
12
+ demo of 🤗 spaces deployment of a streamlit python app
13
+
14
+
15
  Installation instructions
16
 
17
  ```docker compose run dev-environment```
language-models-project/pyproject.toml CHANGED
@@ -7,7 +7,7 @@ readme = "README.md"
7
  packages = [{include = "assignment_1"}]
8
 
9
  [tool.poetry.dependencies]
10
- python = "3.9.15"
11
  black = "*"
12
  jupyterlab = "*"
13
  ipython = "*"
@@ -18,6 +18,12 @@ matplotlib = "*"
18
  seaborn = "*"
19
 
20
 
 
 
 
 
 
 
21
  [build-system]
22
  requires = ["poetry-core"]
23
  build-backend = "poetry.core.masonry.api"
 
7
  packages = [{include = "assignment_1"}]
8
 
9
  [tool.poetry.dependencies]
10
+ python = "3.10.4"
11
  black = "*"
12
  jupyterlab = "*"
13
  ipython = "*"
 
18
  seaborn = "*"
19
 
20
 
21
+ torch = "*"
22
+ transformers = {extras = ["torch"], version = "*"}
23
+ sentencepiece = "*"
24
+ protobuf = "==3.20.*"
25
+
26
+
27
  [build-system]
28
  requires = ["poetry-core"]
29
  build-backend = "poetry.core.masonry.api"