vivicai commited on
Commit
a72c4eb
1 Parent(s): 61f0550

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md CHANGED
@@ -1,3 +1,38 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ <div style="width: 100%;">
5
+ <img src="http://x-pai.algolet.com/bot/img/logo_core.png" alt="TigerBot" style="width: 20%; display: block; margin: auto;">
6
+ </div>
7
+ <p align="center">
8
+ <font face="黑体" size=5"> A cutting-edge foundation for your very own LLM. </font>
9
+ </p>
10
+ <p align="center">
11
+ 🌐 <a href="https://tigerbot.com/" target="_blank">TigerBot</a> • 🤗 <a href="https://huggingface.co/TigerResearch" target="_blank">Hugging Face</a>
12
+ </p>
13
+
14
+
15
+ This is a 4-bit GPTQ version of the [tigerbot-180b-research](https://huggingface.co/TigerResearch/tigerbot-180b-research).
16
+
17
+ It was quantized to 4bit using: https://github.com/TigerResearch/TigerBot/tree/main/gptq
18
+
19
+ ## How to download and use this model in github: https://github.com/TigerResearch/TigerBot
20
+
21
+
22
+ Here are commands to clone the TigerBot and install.
23
+
24
+ ```
25
+ conda create --name tigerbot python=3.8
26
+ conda activate tigerbot
27
+ conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia
28
+ git clone https://github.com/TigerResearch/TigerBot
29
+ cd TigerBot
30
+ pip install -r requirements.txt
31
+ ```
32
+
33
+ Inference with command line interface
34
+
35
+ ```
36
+ cd TigerBot/gptq
37
+ CUDA_VISIBLE_DEVICES=0,1 python tigerbot_infer.py ${MODEL_DIR} --wbits 4 --groupsize 128 --load "{MODEL_DIR}/tigerbot-4bit-128g-*.pt"
38
+ ```