nielsr HF Staff commited on
Commit
7846452
·
verified ·
1 Parent(s): d4bd633

Add model card + paper link

Browse files

This PR adds a model card with all relevant metadata regarding the original model.

The model card now contains information regarding:
- the paper
- the code repository
- the source model, that has a link to the original model card
- the license
- the pipeline tag

Files changed (1) hide show
  1. README.md +49 -11
README.md CHANGED
@@ -1,3 +1,8 @@
 
 
 
 
 
1
  Quantization made by Richard Erkhov.
2
 
3
  [Github](https://github.com/RichardErkhov)
@@ -11,6 +16,9 @@ CursorCore-QW2.5-1.5B-SR - GGUF
11
  - Model creator: https://huggingface.co/TechxGenus/
12
  - Original model: https://huggingface.co/TechxGenus/CursorCore-QW2.5-1.5B-SR/
13
 
 
 
 
14
 
15
  | Name | Quant method | Size |
16
  | ---- | ---- | ---- |
@@ -34,9 +42,6 @@ CursorCore-QW2.5-1.5B-SR - GGUF
34
  | [CursorCore-QW2.5-1.5B-SR.Q6_K.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-QW2.5-1.5B-SR-gguf/blob/main/CursorCore-QW2.5-1.5B-SR.Q6_K.gguf) | Q6_K | 1.19GB |
35
  | [CursorCore-QW2.5-1.5B-SR.Q8_0.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-QW2.5-1.5B-SR-gguf/blob/main/CursorCore-QW2.5-1.5B-SR.Q8_0.gguf) | Q8_0 | 1.53GB |
36
 
37
-
38
-
39
-
40
  Original model description:
41
  ---
42
  tags:
@@ -154,13 +159,27 @@ sample = {
154
  {
155
  "type": "code",
156
  "lang": "python",
157
- "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)"""
 
 
 
 
 
 
 
158
  }
159
  ],
160
  "current": {
161
  "type": "code",
162
  "lang": "python",
163
- "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)"""
 
 
 
 
 
 
 
164
  },
165
  "user": ""
166
  }
@@ -242,7 +261,14 @@ sample = {
242
  "current": {
243
  "type": "code",
244
  "lang": "python",
245
- "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)"""
 
 
 
 
 
 
 
246
  },
247
  "user": "Add Docstring."
248
  }
@@ -313,7 +339,14 @@ sample = {
313
  "current": {
314
  "type": "code",
315
  "lang": "python",
316
- "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)"""
 
 
 
 
 
 
 
317
  },
318
  "user": "Add Docstring."
319
  }
@@ -382,7 +415,14 @@ sample = {
382
  "current": {
383
  "type": "code",
384
  "lang": "python",
385
- "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)"""
 
 
 
 
 
 
 
386
  },
387
  "user": "Add Docstring."
388
  }
@@ -454,6 +494,4 @@ CursorCore is still in a very early stage, and lots of work is needed to achieve
454
 
455
  ## Contribution
456
 
457
- Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.
458
-
459
-
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: text-generation
4
+ ---
5
+
6
  Quantization made by Richard Erkhov.
7
 
8
  [Github](https://github.com/RichardErkhov)
 
16
  - Model creator: https://huggingface.co/TechxGenus/
17
  - Original model: https://huggingface.co/TechxGenus/CursorCore-QW2.5-1.5B-SR/
18
 
19
+ Code: https://github.com/TechxGenus/CursorCore
20
+
21
+ This repository contains a quantized version of the model presented in the paper [CursorCore: Assist Programming through Aligning Anything](https://huggingface.co/papers/2410.07002).
22
 
23
  | Name | Quant method | Size |
24
  | ---- | ---- | ---- |
 
42
  | [CursorCore-QW2.5-1.5B-SR.Q6_K.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-QW2.5-1.5B-SR-gguf/blob/main/CursorCore-QW2.5-1.5B-SR.Q6_K.gguf) | Q6_K | 1.19GB |
43
  | [CursorCore-QW2.5-1.5B-SR.Q8_0.gguf](https://huggingface.co/RichardErkhov/TechxGenus_-_CursorCore-QW2.5-1.5B-SR-gguf/blob/main/CursorCore-QW2.5-1.5B-SR.Q8_0.gguf) | Q8_0 | 1.53GB |
44
 
 
 
 
45
  Original model description:
46
  ---
47
  tags:
 
159
  {
160
  "type": "code",
161
  "lang": "python",
162
+ "code": """def quick_sort(arr):
163
+ if len(arr) <= 1:
164
+ return arr
165
+ pivot = arr[len(arr) // 2]
166
+ left = [x for x in arr if x < pivot]
167
+ middle = [x for x in arr if x == pivot]
168
+ right = [x for x in arr if x > pivot]
169
+ return quick_sort(left) + middle + quick_sort(right)"""
170
  }
171
  ],
172
  "current": {
173
  "type": "code",
174
  "lang": "python",
175
+ "code": """def quick_sort(array):
176
+ if len(arr) <= 1:
177
+ return arr
178
+ pivot = arr[len(arr) // 2]
179
+ left = [x for x in arr if x < pivot]
180
+ middle = [x for x in arr if x == pivot]
181
+ right = [x for x in arr if x > pivot]
182
+ return quick_sort(left) + middle + quick_sort(right)"""
183
  },
184
  "user": ""
185
  }
 
261
  "current": {
262
  "type": "code",
263
  "lang": "python",
264
+ "code": """def quick_sort(array):
265
+ if len(arr) <= 1:
266
+ return arr
267
+ pivot = arr[len(arr) // 2]
268
+ left = [x for x in arr if x < pivot]
269
+ middle = [x for x in arr if x == pivot]
270
+ right = [x for x in arr if x > pivot]
271
+ return quick_sort(left) + middle + quick_sort(right)"""
272
  },
273
  "user": "Add Docstring."
274
  }
 
339
  "current": {
340
  "type": "code",
341
  "lang": "python",
342
+ "code": """def quick_sort(array):
343
+ if len(arr) <= 1:
344
+ return arr
345
+ pivot = arr[len(arr) // 2]
346
+ left = [x for x in arr if x < pivot]
347
+ middle = [x for x in arr if x == pivot]
348
+ right = [x for x in arr if x > pivot]
349
+ return quick_sort(left) + middle + quick_sort(right)"""
350
  },
351
  "user": "Add Docstring."
352
  }
 
415
  "current": {
416
  "type": "code",
417
  "lang": "python",
418
+ "code": """def quick_sort(array):
419
+ if len(arr) <= 1:
420
+ return arr
421
+ pivot = arr[len(arr) // 2]
422
+ left = [x for x in arr if x < pivot]
423
+ middle = [x for x in arr if x == pivot]
424
+ right = [x for x in arr if x > pivot]
425
+ return quick_sort(left) + middle + quick_sort(right)"""
426
  },
427
  "user": "Add Docstring."
428
  }
 
494
 
495
  ## Contribution
496
 
497
+ Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.