Spaces:
Sleeping
Sleeping
YUGOROU
commited on
Commit
·
a1e563e
1
Parent(s):
d58cf7d
Add task list and search notes
Browse files- ToDo.md +16 -0
- Web-search.md +6 -0
ToDo.md
CHANGED
|
@@ -1 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
|
|
|
| 1 |
+
# ToDo
|
| 2 |
+
|
| 3 |
+
- [ ] 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 |
+
- [ ] 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`.
|
| 12 |
+
- Create an image classification pipeline with PyTorch backend.
|
| 13 |
+
- [ ] Build a simple Gradio interface for image classification.
|
| 14 |
+
- Add a title and a short description at the top of the UI.
|
| 15 |
+
- Accept an image input and show the predicted label as output.
|
| 16 |
+
- [ ] Ensure the app can run smoothly in a Hugging Face Spaces environment.
|
| 17 |
|
Web-search.md
CHANGED
|
@@ -1 +1,7 @@
|
|
|
|
|
| 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Web Search
|
| 2 |
|
| 3 |
+
Things to look up:
|
| 4 |
+
- Latest stable release of `transformers` on PyPI.
|
| 5 |
+
- Latest stable release of `gradio` (confirm that 5.36.2 is most recent).
|
| 6 |
+
- Latest stable release of `torch` that is **not** in the 2.3.x series.
|
| 7 |
+
- Any other required packages (e.g. `Pillow` or `safetensors`) and their latest versions.
|