WebraftAI commited on
Commit
67c0d0f
1 Parent(s): 7c367b3

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ tags:
7
+ - code
8
+ ---
9
+
10
+ # SynapseLLM:
11
+
12
+ SynapseLLM, a significant achievement by WebraftAI, represents a series of large language AI models designed to create robust, generalized, and decentralized information systems. This repository specifically houses the SynapseLLM finetuned version of Mistral. The finetuning process is conducted on a custom dataset, albeit limited in scope, focusing on code and normal question-answering scenarios. This adaptation showcases the model's versatility and applicability within specific domains, contributing to the broader landscape of AI advancements.
13
+
14
+ ## Model Details
15
+ **SynapseLLM:**
16
+ - Parameters: 7B
17
+ - Learning rate: 2e-4
18
+ - Adapter used: Qlora
19
+ - Precision: float16
20
+ - Batch size: 32
21
+ - Maximum gradient normal: 0.3
22
+ - Optimizer: paged_adamw_32bit
23
+ - Warmup Ratio: 0.03
24
+ - Step(s) (trained): 500
25
+ - Epoch(s) (trained): 1
26
+
27
+ ### Model Description
28
+
29
+ This is a 7b parameter, decoder only transformer based finetuned model on Chat Q/A and Code instructions. It's a preview finetune on Mistral 7B v0.1 on a sample dataset of 770k rows comprising of 361k Maths Instruct Q/A, 143k GPT-3.5 Q/A, 140k General Code, 63k Python code, and 54k General Q/A (Through GPT-4) [Each row contains one instruction and one response]. This is a full model merged and compiled with trained adapters, so you can easily load this through transformers library.
30
+
31
+
32
+ - **Developed by:** WebraftAI
33
+ - **Funded by:** Webraft Cloud
34
+ - **Shared by:** WebraftAI
35
+ - **Model type:** Decoder-only Transformer
36
+ - **Language(s):** English Only
37
+ - **License:** Apache 2.0
38
+ - **Finetuned from model:** Mistral-7b-v0.1
39
+
40
+ ### Prompt format:
41
+ This model follows the same prompt format as mistral instruct 7b v0.1 .The sample prompt is still given below:
42
+ ```text
43
+
44
+ <s>[INST] Hello, how are you? [/INST]
45
+
46
+ ```
47
+
48
+ ### Example Code:
49
+ Here's an example code using `transformers` library provided by HF.
50
+ ```python
51
+
52
+ from transformers import AutoTokenizer, AutoModelForCausalLM
53
+
54
+ tokenizer = AutoTokenizer.from_pretrained("WebraftAI/synapsellm-7b-mistral-v0.4-preview2")
55
+ model = AutoModelForCausalLM.from_pretrained("WebraftAI/synapsellm-7b-mistral-v0.4-preview2")
56
+
57
+ prompt= "<s>[INST] Hello! [/INST] "
58
+
59
+ device = "cuda"
60
+
61
+ model_inputs = tokenizer([prompt], return_tensors="pt").to(device)
62
+ model.to(device)
63
+
64
+ generated_ids = model.generate(**model_inputs, max_new_tokens=100, do_sample=True)
65
+ print(tokenizer.batch_decode(generated_ids)[0])
66
+ ```
67
+
68
+ ### Model Bias:
69
+ This model has some bias areas, discussed below:
70
+ - Model might output factually incorrect information.
71
+ - Model does not follow system prompts.
72
+ - Model does not have any kind of memory, researchers can experiment feeding memory.
73
+ - Model is trained on different datas, so it can bias information or exclaim itself as gpt model.
74
+