Spaces:
Runtime error
Runtime error
wip
Browse files
NOTES.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
https://huggingface.co/spaces/abidlabs/whisper
|
| 2 |
|
| 3 |
-
|
| 4 |
https://github.com/rii-mango/Papaya/wiki/Configuration
|
| 5 |
|
| 6 |
https://github.com/gradio-app/gradio/issues/4511
|
|
@@ -15,4 +14,65 @@ related:
|
|
| 15 |
|
| 16 |
https://discuss.huggingface.co/t/dynamically-change-maximum-value-of-slider-after-ui-launch/60572
|
| 17 |
|
| 18 |
-
https://huggingface.co/spaces/andreped/AeroPath
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
https://huggingface.co/spaces/abidlabs/whisper
|
| 2 |
|
|
|
|
| 3 |
https://github.com/rii-mango/Papaya/wiki/Configuration
|
| 4 |
|
| 5 |
https://github.com/gradio-app/gradio/issues/4511
|
|
|
|
| 14 |
|
| 15 |
https://discuss.huggingface.co/t/dynamically-change-maximum-value-of-slider-after-ui-launch/60572
|
| 16 |
|
| 17 |
+
https://huggingface.co/spaces/andreped/AeroPath
|
| 18 |
+
https://huggingface.co/spaces/abidlabs/gradio_rich_textbox/blob/main/Dockerfile
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
--
|
| 23 |
+
+ downgrade node
|
| 24 |
+
|
| 25 |
+
npm install -g n
|
| 26 |
+
n 18.17.0
|
| 27 |
+
|
| 28 |
+
relaunch terminal
|
| 29 |
+
|
| 30 |
+
+ install gradio from source ( https://github.com/gradio-app/gradio/issues/2912 )
|
| 31 |
+
|
| 32 |
+
python3 -m pip install --upgrade pip
|
| 33 |
+
pip install setuptools --upgrade
|
| 34 |
+
|
| 35 |
+
+ point python to python3 ( https://stackoverflow.com/questions/69775997/error-when-i-kick-npm-install-in-wsl2-ubuntu )
|
| 36 |
+
|
| 37 |
+
sudo apt install python3 python-is-python3 gcc
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
--
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
pip install gradio==4.2.0
|
| 44 |
+
gradio cc create MyComponent --template SimpleTextbox
|
| 45 |
+
cd mycomponent
|
| 46 |
+
gradio cc dev
|
| 47 |
+
|
| 48 |
+
gradio cc create papaya_viewer --template HTML
|
| 49 |
+
|
| 50 |
+
cd papaya_viewer
|
| 51 |
+
gradio cc dev
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
cd papaya_viewer/frontend
|
| 55 |
+
npm install papaya-viewer
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
https://github.com/gradio-app/gradio/issues/6821
|
| 60 |
+
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
ssh -L 7862:127.0.0.1:7862 -L 7861:127.0.0.1:7861 aigonewrong@throwaway0
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
--
|
| 73 |
+
https://www.youtube.com/watch?v=IVJkOHTBPn0
|
| 74 |
+
|
| 75 |
+
pip install gradio==4.1.0
|
| 76 |
+
|
| 77 |
+
gradio cc create MutlimodalChatbot --template Chatbot
|
| 78 |
+
|