From fb6c710c0f0a8dc793598e1a95f1345a37e6fecd Mon Sep 17 00:00:00 2001 From: Michael Royal <45159366+mikeroyal@users.noreply.github.com> Date: Thu, 20 Apr 2023 01:01:32 -0700 Subject: [PATCH] Updated ChatGPT Chatbots. --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a05423..1b3ce5b 100644 --- a/README.md +++ b/README.md @@ -408,7 +408,6 @@ Most self-hosted software can be installed using [Docker](https://en.wikipedia.o [Varnish](https://www.varnish-cache.org/) - HTTP based web application accelerator focusing on optimizing caching and compression. - ### ChatGPT Chatbots [Back to the Top](#table-of-contents) @@ -466,6 +465,22 @@ npm run dev Chatbot UI
+[MiniGPT-4](https://minigpt-4.github.io/) is an enhancing Vision-language Understanding with Advanced Large Language Models + +**Launching Demo Locally** + +Try out the demo [demo.py](https://github.com/Vision-CAIR/MiniGPT-4/blob/main/demo.py) on your local machine by running + +```python demo.py --cfg-path eval_configs/minigpt4_eval.yaml --gpu-id 0``` + +Here, the demo loads Vicuna as 8 bit by default to save some GPU memory usage. Besides, the default beam search width is 1. Under this setting, the **demo cost about 23G GPU memory**. If you have a more powerful GPU with larger GPU memory, you can run the model in 16 bit by setting low_resource to False in the config file [minigpt4_eval.yaml](https://github.com/Vision-CAIR/MiniGPT-4/blob/main/eval_configs/minigpt4_eval.yaml) and use a larger beam search width. + +
+
+
+ MiniGPT-4 Demo
+