Spaces:
Running
Running
Remove problematic LFS file
Browse files- oneformer/data/bpe_simple_vocab_16e6.txt.gz +0 -3
- requirements.txt +59 -30
oneformer/data/bpe_simple_vocab_16e6.txt.gz
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:924691ac288e54409236115652ad4aa250f48203de50a9e4722a6ecd48d6804a
|
3 |
-
size 1356917
|
|
|
|
|
|
|
|
requirements.txt
CHANGED
@@ -1,42 +1,71 @@
|
|
1 |
-
# PyTorch
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
|
6 |
-
# Core dependencies
|
7 |
-
numpy==1.
|
8 |
-
Pillow==
|
9 |
-
opencv-python-headless==4.8.0.74
|
10 |
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
# Scientific computing
|
15 |
-
scipy==1.
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
|
21 |
# Deep learning utilities
|
22 |
-
timm==0.
|
23 |
-
einops==0.
|
24 |
-
|
25 |
-
#
|
26 |
-
tqdm==4.
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
|
32 |
-
#
|
33 |
ftfy==6.1.1
|
34 |
-
regex==
|
35 |
-
inflect==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
# COCO API
|
38 |
pycocotools
|
39 |
|
40 |
-
#
|
41 |
-
|
42 |
-
|
|
|
|
|
|
1 |
+
# PyTorch CPU versions
|
2 |
+
--extra-index-url https://download.pytorch.org/whl/cpu
|
3 |
+
torch==1.9.0+cpu
|
4 |
+
torchvision==0.10.0+cpu
|
5 |
|
6 |
+
# Core dependencies
|
7 |
+
numpy==1.21.6
|
8 |
+
Pillow==8.3.2
|
|
|
9 |
|
10 |
+
|
11 |
+
# Detectron2 CPU version
|
12 |
+
-f https://dl.fbaipublicfiles.com/detectron2/wheels/cpu/torch1.9/index.html
|
13 |
+
detectron2==0.6
|
14 |
+
|
15 |
+
# OpenCV
|
16 |
+
opencv-python==4.5.5.64
|
17 |
+
|
18 |
+
# Image utilities
|
19 |
+
imutils==0.5.4
|
20 |
|
21 |
# Scientific computing
|
22 |
+
scipy==1.7.3
|
23 |
+
shapely==1.8.5
|
24 |
+
h5py==3.7.0
|
25 |
+
scikit-image==0.19.3
|
26 |
+
scikit-learn==1.0.2
|
27 |
|
28 |
# Deep learning utilities
|
29 |
+
timm==0.4.12
|
30 |
+
einops==0.6.1
|
31 |
+
|
32 |
+
# Development tools
|
33 |
+
tqdm==4.64.1
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
|
39 |
+
# NLP utilities
|
40 |
ftfy==6.1.1
|
41 |
+
regex==2022.10.31
|
42 |
+
inflect==6.0.4
|
43 |
+
|
44 |
+
# File utilities
|
45 |
+
gdown==4.5.4
|
46 |
+
wget==3.2
|
47 |
+
|
48 |
+
# Compatible web interface versions
|
49 |
+
gradio==3.1.7
|
50 |
+
huggingface_hub==0.8.1
|
51 |
+
fastapi==0.78.0
|
52 |
+
uvicorn==0.18.2
|
53 |
+
|
54 |
+
# YAML support
|
55 |
+
PyYAML==5.4.1
|
56 |
+
|
57 |
+
# Matplotlib
|
58 |
+
matplotlib==3.5.3
|
59 |
+
|
60 |
+
# Build tools
|
61 |
+
cython==0.29.35
|
62 |
+
setuptools==59.5.0
|
63 |
|
64 |
# COCO API
|
65 |
pycocotools
|
66 |
|
67 |
+
# Additional gradio dependencies
|
68 |
+
httpx==0.23.0
|
69 |
+
httpcore==0.15.0
|
70 |
+
anyio==3.6.1
|
71 |
+
starlette==0.19.1
|