Spaces:
Runtime error
Runtime error
chore: update metadata
Browse files- .pre-commit-config.yaml +5 -5
- poetry.lock +0 -0
- pyproject.toml +4 -4
- requirements.txt +2 -1
.pre-commit-config.yaml
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
repos:
|
2 |
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3 |
-
rev: v4.
|
4 |
hooks:
|
5 |
- id: trailing-whitespace
|
6 |
args: [--markdown-linebreak-ext=md]
|
7 |
- id: end-of-file-fixer
|
8 |
|
9 |
- repo: https://github.com/asottile/pyupgrade
|
10 |
-
rev:
|
11 |
hooks:
|
12 |
- id: pyupgrade
|
13 |
-
args: [--
|
14 |
|
15 |
- repo: https://github.com/pycqa/isort
|
16 |
rev: 5.10.1
|
@@ -19,12 +19,12 @@ repos:
|
|
19 |
args: [--profile=black]
|
20 |
|
21 |
- repo: https://github.com/psf/black
|
22 |
-
rev: 22.
|
23 |
hooks:
|
24 |
- id: black
|
25 |
|
26 |
- repo: https://github.com/PyCQA/flake8
|
27 |
-
rev:
|
28 |
hooks:
|
29 |
- id: flake8
|
30 |
additional_dependencies:
|
|
|
1 |
repos:
|
2 |
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3 |
+
rev: v4.3.0
|
4 |
hooks:
|
5 |
- id: trailing-whitespace
|
6 |
args: [--markdown-linebreak-ext=md]
|
7 |
- id: end-of-file-fixer
|
8 |
|
9 |
- repo: https://github.com/asottile/pyupgrade
|
10 |
+
rev: v3.0.0
|
11 |
hooks:
|
12 |
- id: pyupgrade
|
13 |
+
args: [--py38-plus]
|
14 |
|
15 |
- repo: https://github.com/pycqa/isort
|
16 |
rev: 5.10.1
|
|
|
19 |
args: [--profile=black]
|
20 |
|
21 |
- repo: https://github.com/psf/black
|
22 |
+
rev: 22.8.0
|
23 |
hooks:
|
24 |
- id: black
|
25 |
|
26 |
- repo: https://github.com/PyCQA/flake8
|
27 |
+
rev: 5.0.4
|
28 |
hooks:
|
29 |
- id: flake8
|
30 |
additional_dependencies:
|
poetry.lock
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
[tool.poetry]
|
2 |
-
name = "
|
3 |
-
version = "0.2.
|
4 |
description = ""
|
5 |
authors = ["Bingsu <ks2515@naver.com>"]
|
6 |
license = "MIT"
|
7 |
|
8 |
[tool.poetry.dependencies]
|
9 |
-
python = "^3.
|
10 |
torch = "^1.12"
|
11 |
transformers = "*"
|
12 |
streamlit = "*"
|
@@ -26,4 +26,4 @@ requires = ["poetry-core>=1.0.0"]
|
|
26 |
build-backend = "poetry.core.masonry.api"
|
27 |
|
28 |
[tool.isort]
|
29 |
-
profile="black"
|
|
|
1 |
[tool.poetry]
|
2 |
+
name = "my-clip-model-test"
|
3 |
+
version = "0.2.1"
|
4 |
description = ""
|
5 |
authors = ["Bingsu <ks2515@naver.com>"]
|
6 |
license = "MIT"
|
7 |
|
8 |
[tool.poetry.dependencies]
|
9 |
+
python = "^3.8"
|
10 |
torch = "^1.12"
|
11 |
transformers = "*"
|
12 |
streamlit = "*"
|
|
|
26 |
build-backend = "poetry.core.masonry.api"
|
27 |
|
28 |
[tool.isort]
|
29 |
+
profile="black"
|
requirements.txt
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
torch
|
2 |
transformers
|
3 |
pandas
|
4 |
-
sentence-transformers
|
|
|
|
1 |
torch
|
2 |
transformers
|
3 |
pandas
|
4 |
+
sentence-transformers
|
5 |
+
streamlit
|