feat: Init.
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +5 -1
- .gitignore +1 -0
- Dockerfile +18 -0
- examples/.DS_Store +0 -0
- examples/.gitignore +1 -0
- examples/.python-version +1 -0
- examples/__init__.py +0 -0
- examples/__pycache__/__init__.cpython-37.pyc +0 -0
- examples/__pycache__/__init__.cpython-39.pyc +0 -0
- examples/__pycache__/audio_annotator.cpython-39.pyc +0 -0
- examples/__pycache__/button.cpython-39.pyc +0 -0
- examples/__pycache__/chatbot.cpython-38.pyc +0 -0
- examples/__pycache__/chatbot.cpython-39.pyc +0 -0
- examples/__pycache__/chatbot_stream.cpython-39.pyc +0 -0
- examples/__pycache__/choice_group.cpython-39.pyc +0 -0
- examples/__pycache__/color_picker.cpython-39.pyc +0 -0
- examples/__pycache__/combobox.cpython-37.pyc +0 -0
- examples/__pycache__/combobox.cpython-39.pyc +0 -0
- examples/__pycache__/copyable_text.cpython-39.pyc +0 -0
- examples/__pycache__/counter_broadcast.cpython-39.pyc +0 -0
- examples/__pycache__/counter_multicast.cpython-39.pyc +0 -0
- examples/__pycache__/counter_unicast.cpython-39.pyc +0 -0
- examples/__pycache__/demo.cpython-39.pyc +0 -0
- examples/__pycache__/dropdown.cpython-37.pyc +0 -0
- examples/__pycache__/dropdown.cpython-39.pyc +0 -0
- examples/__pycache__/file_stream.cpython-39.pyc +0 -0
- examples/__pycache__/file_upload.cpython-37.pyc +0 -0
- examples/__pycache__/file_upload.cpython-39.pyc +0 -0
- examples/__pycache__/file_upload_compact.cpython-39.pyc +0 -0
- examples/__pycache__/form_menu.cpython-39.pyc +0 -0
- examples/__pycache__/form_visibility.cpython-39.pyc +0 -0
- examples/__pycache__/graphics_path.cpython-39.pyc +0 -0
- examples/__pycache__/hash_routing.cpython-39.pyc +0 -0
- examples/__pycache__/header.cpython-39.pyc +0 -0
- examples/__pycache__/http_client.cpython-39.pyc +0 -0
- examples/__pycache__/image_annotator.cpython-37.pyc +0 -0
- examples/__pycache__/image_annotator.cpython-39.pyc +0 -0
- examples/__pycache__/image_popup.cpython-39.pyc +0 -0
- examples/__pycache__/inline.cpython-39.pyc +0 -0
- examples/__pycache__/issue_tracker.cpython-39.pyc +0 -0
- examples/__pycache__/link.cpython-39.pyc +0 -0
- examples/__pycache__/markdown_submit_text.cpython-39.pyc +0 -0
- examples/__pycache__/menu.cpython-37.pyc +0 -0
- examples/__pycache__/menu.cpython-39.pyc +0 -0
- examples/__pycache__/meta_dialog.cpython-39.pyc +0 -0
- examples/__pycache__/meta_dialog_closable.cpython-39.pyc +0 -0
- examples/__pycache__/meta_notification_bar.cpython-39.pyc +0 -0
- examples/__pycache__/meta_notification_bar_closable.cpython-39.pyc +0 -0
- examples/__pycache__/meta_theme.cpython-39.pyc +0 -0
- examples/__pycache__/nav.cpython-39.pyc +0 -0
.gitattributes
CHANGED
@@ -27,8 +27,12 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
27 |
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
*.tflite filter=lfs diff=lfs merge=lfs -text
|
29 |
*.tgz filter=lfs diff=lfs merge=lfs -text
|
30 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
31 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
27 |
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
28 |
*.tflite filter=lfs diff=lfs merge=lfs -text
|
29 |
*.tgz filter=lfs diff=lfs merge=lfs -text
|
|
|
30 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.whl filter=lfs diff=lfs merge=lfs -text
|
35 |
+
*.data filter=lfs diff=lfs merge=lfs -text
|
36 |
+
*.asm.wasm filter=lfs diff=lfs merge=lfs -text
|
37 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
38 |
+
*asm.wasm filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
venv
|
Dockerfile
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
+
# you will also find guides on how best to write your Dockerfile
|
3 |
+
|
4 |
+
FROM python:3.9
|
5 |
+
|
6 |
+
WORKDIR /code
|
7 |
+
|
8 |
+
COPY . .
|
9 |
+
|
10 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
+
|
12 |
+
|
13 |
+
# Change the port number of our Wave app to 7860
|
14 |
+
# which is default in Hugging Face Spaces.
|
15 |
+
ENV H2O_WAVE_LISTEN=":7860"
|
16 |
+
ENV H2O_WAVE_ADDRESS='http://127.0.0.1:7860'
|
17 |
+
|
18 |
+
CMD ["wave", "run", "examples.tour", "--no-reload"]
|
examples/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
examples/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
*.html
|
examples/.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.8.10
|
examples/__init__.py
ADDED
File without changes
|
examples/__pycache__/__init__.cpython-37.pyc
ADDED
Binary file (163 Bytes). View file
|
|
examples/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (171 Bytes). View file
|
|
examples/__pycache__/audio_annotator.cpython-39.pyc
ADDED
Binary file (1.19 kB). View file
|
|
examples/__pycache__/button.cpython-39.pyc
ADDED
Binary file (2.47 kB). View file
|
|
examples/__pycache__/chatbot.cpython-38.pyc
ADDED
Binary file (828 Bytes). View file
|
|
examples/__pycache__/chatbot.cpython-39.pyc
ADDED
Binary file (828 Bytes). View file
|
|
examples/__pycache__/chatbot_stream.cpython-39.pyc
ADDED
Binary file (1.14 kB). View file
|
|
examples/__pycache__/choice_group.cpython-39.pyc
ADDED
Binary file (999 Bytes). View file
|
|
examples/__pycache__/color_picker.cpython-39.pyc
ADDED
Binary file (748 Bytes). View file
|
|
examples/__pycache__/combobox.cpython-37.pyc
ADDED
Binary file (1.33 kB). View file
|
|
examples/__pycache__/combobox.cpython-39.pyc
ADDED
Binary file (1.41 kB). View file
|
|
examples/__pycache__/copyable_text.cpython-39.pyc
ADDED
Binary file (860 Bytes). View file
|
|
examples/__pycache__/counter_broadcast.cpython-39.pyc
ADDED
Binary file (726 Bytes). View file
|
|
examples/__pycache__/counter_multicast.cpython-39.pyc
ADDED
Binary file (727 Bytes). View file
|
|
examples/__pycache__/counter_unicast.cpython-39.pyc
ADDED
Binary file (682 Bytes). View file
|
|
examples/__pycache__/demo.cpython-39.pyc
ADDED
Binary file (1.93 kB). View file
|
|
examples/__pycache__/dropdown.cpython-37.pyc
ADDED
Binary file (1.73 kB). View file
|
|
examples/__pycache__/dropdown.cpython-39.pyc
ADDED
Binary file (1.44 kB). View file
|
|
examples/__pycache__/file_stream.cpython-39.pyc
ADDED
Binary file (1.65 kB). View file
|
|
examples/__pycache__/file_upload.cpython-37.pyc
ADDED
Binary file (691 Bytes). View file
|
|
examples/__pycache__/file_upload.cpython-39.pyc
ADDED
Binary file (779 Bytes). View file
|
|
examples/__pycache__/file_upload_compact.cpython-39.pyc
ADDED
Binary file (923 Bytes). View file
|
|
examples/__pycache__/form_menu.cpython-39.pyc
ADDED
Binary file (1.56 kB). View file
|
|
examples/__pycache__/form_visibility.cpython-39.pyc
ADDED
Binary file (1.23 kB). View file
|
|
examples/__pycache__/graphics_path.cpython-39.pyc
ADDED
Binary file (1.54 kB). View file
|
|
examples/__pycache__/hash_routing.cpython-39.pyc
ADDED
Binary file (988 Bytes). View file
|
|
examples/__pycache__/header.cpython-39.pyc
ADDED
Binary file (662 Bytes). View file
|
|
examples/__pycache__/http_client.cpython-39.pyc
ADDED
Binary file (876 Bytes). View file
|
|
examples/__pycache__/image_annotator.cpython-37.pyc
ADDED
Binary file (1.05 kB). View file
|
|
examples/__pycache__/image_annotator.cpython-39.pyc
ADDED
Binary file (1.34 kB). View file
|
|
examples/__pycache__/image_popup.cpython-39.pyc
ADDED
Binary file (445 Bytes). View file
|
|
examples/__pycache__/inline.cpython-39.pyc
ADDED
Binary file (1.5 kB). View file
|
|
examples/__pycache__/issue_tracker.cpython-39.pyc
ADDED
Binary file (3.82 kB). View file
|
|
examples/__pycache__/link.cpython-39.pyc
ADDED
Binary file (986 Bytes). View file
|
|
examples/__pycache__/markdown_submit_text.cpython-39.pyc
ADDED
Binary file (803 Bytes). View file
|
|
examples/__pycache__/menu.cpython-37.pyc
ADDED
Binary file (1.14 kB). View file
|
|
examples/__pycache__/menu.cpython-39.pyc
ADDED
Binary file (1.13 kB). View file
|
|
examples/__pycache__/meta_dialog.cpython-39.pyc
ADDED
Binary file (1.17 kB). View file
|
|
examples/__pycache__/meta_dialog_closable.cpython-39.pyc
ADDED
Binary file (893 Bytes). View file
|
|
examples/__pycache__/meta_notification_bar.cpython-39.pyc
ADDED
Binary file (1.64 kB). View file
|
|
examples/__pycache__/meta_notification_bar_closable.cpython-39.pyc
ADDED
Binary file (1.14 kB). View file
|
|
examples/__pycache__/meta_theme.cpython-39.pyc
ADDED
Binary file (1.46 kB). View file
|
|
examples/__pycache__/nav.cpython-39.pyc
ADDED
Binary file (1.98 kB). View file
|
|