duyntnet commited on
Commit
f8df1d2
1 Parent(s): 37b0af7

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,29 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ imatrix.dat filter=lfs diff=lfs merge=lfs -text
37
+ stable-code-instruct-3b-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
38
+ stable-code-instruct-3b-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
39
+ stable-code-instruct-3b-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
40
+ stable-code-instruct-3b-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
41
+ stable-code-instruct-3b-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
42
+ stable-code-instruct-3b-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
43
+ stable-code-instruct-3b-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
44
+ stable-code-instruct-3b-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
45
+ stable-code-instruct-3b-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
46
+ stable-code-instruct-3b-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
47
+ stable-code-instruct-3b-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
48
+ stable-code-instruct-3b-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
49
+ stable-code-instruct-3b-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
50
+ stable-code-instruct-3b-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
51
+ stable-code-instruct-3b-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
52
+ stable-code-instruct-3b-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
53
+ stable-code-instruct-3b-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
54
+ stable-code-instruct-3b-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
55
+ stable-code-instruct-3b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
56
+ stable-code-instruct-3b-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
57
+ stable-code-instruct-3b-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
58
+ stable-code-instruct-3b-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
59
+ stable-code-instruct-3b-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
60
+ stable-code-instruct-3b-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
61
+ stable-code-instruct-3b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - stabilityai
8
+ - gguf
9
+ - imatrix
10
+ - stable-code-instruct-3b
11
+ ---
12
+ Quantizations of https://huggingface.co/stabilityai/stable-code-instruct-3b
13
+
14
+ # From original readme
15
+
16
+ ## Usage
17
+ Here's how you can run the model use the model:
18
+
19
+ ```python
20
+
21
+ import torch
22
+ from transformers import AutoModelForCausalLM, AutoTokenizer
23
+ tokenizer = AutoTokenizer.from_pretrained("stabilityai/stable-code-instruct-3b", trust_remote_code=True)
24
+ model = AutoModelForCausalLM.from_pretrained("stabilityai/stable-code-instruct-3b", torch_dtype=torch.bfloat16, trust_remote_code=True)
25
+ model.eval()
26
+ model = model.cuda()
27
+
28
+ messages = [
29
+ {
30
+ "role": "system",
31
+ "content": "You are a helpful and polite assistant",
32
+ },
33
+ {
34
+ "role": "user",
35
+ "content": "Write a simple website in HTML. When a user clicks the button, it shows a random joke from a list of 4 jokes."
36
+ },
37
+ ]
38
+
39
+ prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)
40
+
41
+ inputs = tokenizer([prompt], return_tensors="pt").to(model.device)
42
+
43
+ tokens = model.generate(
44
+ **inputs,
45
+ max_new_tokens=1024,
46
+ temperature=0.5,
47
+ top_p=0.95,
48
+ top_k=100,
49
+ do_sample=True,
50
+ use_cache=True
51
+ )
52
+
53
+ output = tokenizer.batch_decode(tokens[:, inputs.input_ids.shape[-1]:], skip_special_tokens=False)[0]
54
+ ```
55
+ ```
imatrix.dat ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fa3af308067279f4f089f2b7173cf0692b8a597e24b9d18e4e11dc1fe55053f
3
+ size 2858206
stable-code-instruct-3b-IQ1_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98b52732d74fc68ac6a20204d068967b2c8dbaecd349e9f6215e374ac57948aa
3
+ size 727872800
stable-code-instruct-3b-IQ1_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f512f547f7b32230cde0e53d3da32c82758d5a36c074a3fa0b01f4696c14b689
3
+ size 679888160
stable-code-instruct-3b-IQ2_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69e44d66c7cabf9143f6c3cd18a8a7e77b987da29534198af870e8f4d74e6cf4
3
+ size 1013417760
stable-code-instruct-3b-IQ2_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:831dc2903e4e469d0e9feecae36c7f1802b475cea3c876f1291d2971ec342e95
3
+ size 949438240
stable-code-instruct-3b-IQ2_XS.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f0e274e925dbe2b7a83f16cee565da1f711538e294c4a1fd1fc15ae270c4368
3
+ size 878380320
stable-code-instruct-3b-IQ2_XXS.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f5509014c3953b6c6bd7f35d3b2cc3dfda41b4a2851fe67f09019984a9feaf9
3
+ size 807847200
stable-code-instruct-3b-IQ3_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9d4d9ac011702ec59fb2e194e34b01f236a618423f619cd80c8cce6a630f4a8
3
+ size 1319555360
stable-code-instruct-3b-IQ3_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23b278e6dba43a53eb8f4f09b73f1624f220f0c6ce0c299e1bc653c8651983e1
3
+ size 1254449440
stable-code-instruct-3b-IQ3_XS.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5c18ea3c06ad9d63d0c5b53a8886ec2f8a80d96f70f63766e3e75032ebbb0c1
3
+ size 1194975520
stable-code-instruct-3b-IQ3_XXS.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89b7793fee8c998197be309680fc7e7f0c0de3251fba41f61dfb05276856b9d5
3
+ size 1102014240
stable-code-instruct-3b-IQ4_NL.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b4c0b5f24a58bfa22c3fa38d4d1de466607d545bb08d69e53ba8da598da38d5
3
+ size 1608571680
stable-code-instruct-3b-IQ4_XS.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b70b43a605d4f6028c4528188568fbb5af36a63f5c2d6395e26ec61f42bbbc5
3
+ size 1525248800
stable-code-instruct-3b-Q2_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87ab29a79102f70a3785c86d439fcdded3a62810d866382d99bcb83f53187c54
3
+ size 1083756320
stable-code-instruct-3b-Q2_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0627ede78a5ed4080064bae6163c31512dad6b5e34b23829aaf56e351348af6a
3
+ size 1000238880
stable-code-instruct-3b-Q3_K_L.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:945c804cbde2d942d8cdcad0408922b9f0f405dc677b7d38a1f4a5335de35d88
3
+ size 1508565280
stable-code-instruct-3b-Q3_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fe02a81a429b2f98d7e817c2a2c8e43e1a674f22fbe01b3f36d010b07718fb2
3
+ size 1391419680
stable-code-instruct-3b-Q3_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2140257c1a68ff2c2c17526c54906cf5eda0b996f1dd4d57fa0e45c617dcdf6e
3
+ size 1254449440
stable-code-instruct-3b-Q4_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f32988ba60230a1771116fe76e6a82c59193dae49d322994a976373f8bdc48c
3
+ size 1612995360
stable-code-instruct-3b-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7496795bd2e05616d0133618ca90e3fc561022b4c6c89841399fc09851e06291
3
+ size 1708596000
stable-code-instruct-3b-Q4_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a9d723c8ec9a30ad0228007a70f3b06d6b5ef953db0985f6685d76efb3cbbee
3
+ size 1620695840
stable-code-instruct-3b-Q5_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38ca640a9578609f9f00c291089bebe43d431fa4e27a9908f6a5d5cf881d7103
3
+ size 1946286880
stable-code-instruct-3b-Q5_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e993a8136a95f2c19be2b3ee50594ccf0bc9a2cf0bbc4ec6c1d38f4bb4ace7b5
3
+ size 1993390880
stable-code-instruct-3b-Q5_K_S.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12ee51b7aa715898a0f2d5a18b1df4633a21093952ec0835356ee8641cb2d190
3
+ size 1941863200
stable-code-instruct-3b-Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71922b9d61963e8338644d7b1f70838d7592cec54052909dafb0f28f63ce9b58
3
+ size 2295985440
stable-code-instruct-3b-Q8_0.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e869ef6929fe63e6c1267bbf95fe25de97c96f031a918eb92fa40c8ee4ca7ff8
3
+ size 2972926240