lolout1 commited on
Commit
e37c07b
·
1 Parent(s): 8c7176e

Remove problematic LFS file

Browse files
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 - let Spaces handle the CPU version
2
- torch>=2.0.0
3
- torchvision>=0.15.0
4
- torchaudio
5
 
6
- # Core dependencies
7
- numpy==1.24.3
8
- Pillow==10.0.0
9
- opencv-python-headless==4.8.0.74
10
 
11
- # Gradio - use a newer stable version
12
- gradio==3.50.2
 
 
 
 
 
 
 
 
13
 
14
  # Scientific computing
15
- scipy==1.10.1
16
- scikit-learn==1.3.0
17
- scikit-image==0.21.0
18
- shapely==2.0.1
19
- h5py==3.9.0
20
 
21
  # Deep learning utilities
22
- timm==0.9.2
23
- einops==0.7.0
24
-
25
- # Utils
26
- tqdm==4.66.1
27
- matplotlib==3.7.2
28
- PyYAML==6.0.1
29
- huggingface-hub
30
- imutils==0.5.4
31
 
32
- # Text processing
33
  ftfy==6.1.1
34
- regex==2023.8.8
35
- inflect==7.0.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  # COCO API
38
  pycocotools
39
 
40
- # File utilities
41
- gdown==4.7.1
42
- wget==3.2
 
 
 
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