nielsr HF Staff commited on
Commit
2551366
·
verified ·
1 Parent(s): ec6ab4d

Add metadata and link to paper and Github

Browse files

This PR adds the pipeline tag, library name, license, and base model to the model card. It also adds a link to the paper and the Github repository.

Files changed (1) hide show
  1. README.md +50 -12
README.md CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  Quantization made by Richard Erkhov.
2
 
3
  [Github](https://github.com/RichardErkhov)
@@ -6,11 +14,11 @@ Quantization made by Richard Erkhov.
6
 
7
  [Request more models](https://github.com/RichardErkhov/quant_request)
8
 
9
-
10
  CursorCore-DS-1.3B - GGUF
11
  - Model creator: https://huggingface.co/TechxGenus/
12
  - Original model: https://huggingface.co/TechxGenus/CursorCore-DS-1.3B/
13
-
 
14
 
15
  | Name | Quant method | Size |
16
  | ---- | ---- | ---- |
@@ -37,9 +45,6 @@ CursorCore-DS-1.3B - GGUF
37
  | [CursorCore-DS-1.3B.Q6_K.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-DS-1.3B-gguf/blob/main/CursorCore-DS-1.3B.Q6_K.gguf) | Q6_K | 1.09GB |
38
  | [CursorCore-DS-1.3B.Q8_0.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-DS-1.3B-gguf/blob/main/CursorCore-DS-1.3B.Q8_0.gguf) | Q8_0 | 1.33GB |
39
 
40
-
41
-
42
-
43
  Original model description:
44
  ---
45
  tags:
@@ -159,13 +164,27 @@ sample = {
159
  {
160
  "type": "code",
161
  "lang": "python",
162
- "code": """def quick_sort(arr):\n if len(arr) <= 1:\n return arr\n pivot = arr[len(arr) // 2]\n left = [x for x in arr if x < pivot]\n middle = [x for x in arr if x == pivot]\n right = [x for x in arr if x > pivot]\n return quick_sort(left) + middle + quick_sort(right)"""
 
 
 
 
 
 
 
163
  }
164
  ],
165
  "current": {
166
  "type": "code",
167
  "lang": "python",
168
- "code": """def quick_sort(array):\n if len(arr) <= 1:\n return arr\n pivot = arr[len(arr) // 2]\n left = [x for x in arr if x < pivot]\n middle = [x for x in arr if x == pivot]\n right = [x for x in arr if x > pivot]\n return quick_sort(left) + middle + quick_sort(right)"""
 
 
 
 
 
 
 
169
  },
170
  "user": ""
171
  }
@@ -247,7 +266,14 @@ sample = {
247
  "current": {
248
  "type": "code",
249
  "lang": "python",
250
- "code": """def quick_sort(array):\n if len(arr) <= 1:\n return arr\n pivot = arr[len(arr) // 2]\n left = [x for x in arr if x < pivot]\n middle = [x for x in arr if x == pivot]\n right = [x for x in arr if x > pivot]\n return quick_sort(left) + middle + quick_sort(right)"""
 
 
 
 
 
 
 
251
  },
252
  "user": "Add Docstring."
253
  }
@@ -318,7 +344,14 @@ sample = {
318
  "current": {
319
  "type": "code",
320
  "lang": "python",
321
- "code": """def quick_sort(array):\n if len(arr) <= 1:\n return arr\n pivot = arr[len(arr) // 2]\n left = [x for x in arr if x < pivot]\n middle = [x for x in arr if x == pivot]\n right = [x for x in arr if x > pivot]\n return quick_sort(left) + middle + quick_sort(right)"""
 
 
 
 
 
 
 
322
  },
323
  "user": "Add Docstring."
324
  }
@@ -387,7 +420,14 @@ sample = {
387
  "current": {
388
  "type": "code",
389
  "lang": "python",
390
- "code": """def quick_sort(array):\n if len(arr) <= 1:\n return arr\n pivot = arr[len(arr) // 2]\n left = [x for x in arr if x < pivot]\n middle = [x for x in arr if x == pivot]\n right = [x for x in arr if x > pivot]\n return quick_sort(left) + middle + quick_sort(right)"""
 
 
 
 
 
 
 
391
  },
392
  "user": "Add Docstring."
393
  }
@@ -461,6 +501,4 @@ CursorCore is still in a very early stage, and lots of work is needed to achieve
461
 
462
  Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.
463
 
464
-
465
-
466
  Additional thanks to @nicoboss for giving me access to his private supercomputer, enabling me to provide many more quants, at much higher speed, than I would otherwise be able to.
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ base_model:
6
+ - TechxGenus/CursorCore-DS-1.3B
7
+ ---
8
+
9
  Quantization made by Richard Erkhov.
10
 
11
  [Github](https://github.com/RichardErkhov)
 
14
 
15
  [Request more models](https://github.com/RichardErkhov/quant_request)
16
 
 
17
  CursorCore-DS-1.3B - GGUF
18
  - Model creator: https://huggingface.co/TechxGenus/
19
  - Original model: https://huggingface.co/TechxGenus/CursorCore-DS-1.3B/
20
+ - Paper: https://huggingface.co/papers/2410.07002
21
+ - Code: https://github.com/TechxGenus/CursorCore
22
 
23
  | Name | Quant method | Size |
24
  | ---- | ---- | ---- |
 
45
  | [CursorCore-DS-1.3B.Q6_K.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-DS-1.3B-gguf/blob/main/CursorCore-DS-1.3B.Q6_K.gguf) | Q6_K | 1.09GB |
46
  | [CursorCore-DS-1.3B.Q8_0.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-DS-1.3B-gguf/blob/main/CursorCore-DS-1.3B.Q8_0.gguf) | Q8_0 | 1.33GB |
47
 
 
 
 
48
  Original model description:
49
  ---
50
  tags:
 
164
  {
165
  "type": "code",
166
  "lang": "python",
167
+ "code": """def quick_sort(arr):
168
+ if len(arr) <= 1:
169
+ return arr
170
+ pivot = arr[len(arr) // 2]
171
+ left = [x for x in arr if x < pivot]
172
+ middle = [x for x in arr if x == pivot]
173
+ right = [x for x in arr if x > pivot]
174
+ return quick_sort(left) + middle + quick_sort(right)"""
175
  }
176
  ],
177
  "current": {
178
  "type": "code",
179
  "lang": "python",
180
+ "code": """def quick_sort(array):
181
+ if len(arr) <= 1:
182
+ return arr
183
+ pivot = arr[len(arr) // 2]
184
+ left = [x for x in arr if x < pivot]
185
+ middle = [x for x in arr if x == pivot]
186
+ right = [x for x in arr if x > pivot]
187
+ return quick_sort(left) + middle + quick_sort(right)"""
188
  },
189
  "user": ""
190
  }
 
266
  "current": {
267
  "type": "code",
268
  "lang": "python",
269
+ "code": """def quick_sort(array):
270
+ if len(arr) <= 1:
271
+ return arr
272
+ pivot = arr[len(arr) // 2]
273
+ left = [x for x in arr if x < pivot]
274
+ middle = [x for x in arr if x == pivot]
275
+ right = [x for x in arr if x > pivot]
276
+ return quick_sort(left) + middle + quick_sort(right)"""
277
  },
278
  "user": "Add Docstring."
279
  }
 
344
  "current": {
345
  "type": "code",
346
  "lang": "python",
347
+ "code": """def quick_sort(array):
348
+ if len(arr) <= 1:
349
+ return arr
350
+ pivot = arr[len(arr) // 2]
351
+ left = [x for x in arr if x < pivot]
352
+ middle = [x for x in arr if x == pivot]
353
+ right = [x for x in arr if x > pivot]
354
+ return quick_sort(left) + middle + quick_sort(right)"""
355
  },
356
  "user": "Add Docstring."
357
  }
 
420
  "current": {
421
  "type": "code",
422
  "lang": "python",
423
+ "code": """def quick_sort(array):
424
+ if len(arr) <= 1:
425
+ return arr
426
+ pivot = arr[len(arr) // 2]
427
+ left = [x for x in arr if x < pivot]
428
+ middle = [x for x in arr if x == pivot]
429
+ right = [x for x in arr if x > pivot]
430
+ return quick_sort(left) + middle + quick_sort(right)"""
431
  },
432
  "user": "Add Docstring."
433
  }
 
501
 
502
  Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.
503
 
 
 
504
  Additional thanks to @nicoboss for giving me access to his private supercomputer, enabling me to provide many more quants, at much higher speed, than I would otherwise be able to.