Spaces:
Sleeping
Sleeping
YUGOROU
commited on
Commit
·
4a5a2fa
1
Parent(s):
6db5f99
Populate requirements and update ToDo
Browse files- ToDo.md +2 -2
- requirements.txt +5 -1
ToDo.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
# ToDo
|
2 |
|
3 |
-
- [
|
4 |
- `transformers` (use latest)
|
5 |
- `gradio` (example: 5.36.2 is currently latest)
|
6 |
- `torch` (avoid 2.3.x)
|
7 |
- other helpful packages (e.g. `Pillow`, `safetensors`)
|
8 |
-
- [
|
9 |
- [ ] Implement `app.py` to run the **YUGOROU/Soba-or-Udon-vit** model from Hugging Face using the `transformers` library.
|
10 |
- Model repo: <https://huggingface.co/YUGOROU/Soba-or-Udon-vit>
|
11 |
- Load weights from `model.safetensors` and base model `google/vit-base-patch16-224`.
|
|
|
1 |
# ToDo
|
2 |
|
3 |
+
- [x] Determine the latest stable versions of the following libraries:
|
4 |
- `transformers` (use latest)
|
5 |
- `gradio` (example: 5.36.2 is currently latest)
|
6 |
- `torch` (avoid 2.3.x)
|
7 |
- other helpful packages (e.g. `Pillow`, `safetensors`)
|
8 |
+
- [x] Populate `requirements.txt` with the collected versions.
|
9 |
- [ ] Implement `app.py` to run the **YUGOROU/Soba-or-Udon-vit** model from Hugging Face using the `transformers` library.
|
10 |
- Model repo: <https://huggingface.co/YUGOROU/Soba-or-Udon-vit>
|
11 |
- Load weights from `model.safetensors` and base model `google/vit-base-patch16-224`.
|
requirements.txt
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
transformers==4.53.2
|
2 |
+
gradio==5.36.2
|
3 |
+
torch==2.7.1
|
4 |
+
Pillow==11.3.0
|
5 |
+
safetensors==0.5.3
|