Replace Arxiv link with HF paper link
Browse filesThe model card already contained a link to the paper, this PR replaces it with a link to the Hugging Face paper page.
README.md
CHANGED
|
@@ -1,22 +1,21 @@
|
|
| 1 |
---
|
| 2 |
-
tags:
|
| 3 |
-
- code
|
| 4 |
base_model:
|
| 5 |
- TechxGenus/CursorCore-DS-1.3B-LC
|
| 6 |
library_name: transformers
|
| 7 |
-
pipeline_tag: text-generation
|
| 8 |
license: other
|
| 9 |
license_name: deepseek
|
| 10 |
license_link: LICENSE
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# CursorCore: Assist Programming through Aligning Anything
|
| 14 |
|
| 15 |
<p align="center">
|
| 16 |
-
<a href="
|
| 17 |
-
<a href="https://
|
| 18 |
-
<a href="https://
|
| 19 |
-
<a href="https://github.com/TechxGenus/CursorCore">[🛠️Code]</a> |
|
| 20 |
<a href="https://github.com/TechxGenus/CursorWeb">[Web]</a> |
|
| 21 |
<a href="https://discord.gg/Z5Tev8fV">[Discord]</a>
|
| 22 |
</p>
|
|
@@ -116,13 +115,27 @@ sample = {
|
|
| 116 |
{
|
| 117 |
"type": "code",
|
| 118 |
"lang": "python",
|
| 119 |
-
"code": """def quick_sort(arr)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
}
|
| 121 |
],
|
| 122 |
"current": {
|
| 123 |
"type": "code",
|
| 124 |
"lang": "python",
|
| 125 |
-
"code": """def quick_sort(array)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
},
|
| 127 |
"user": ""
|
| 128 |
}
|
|
@@ -204,7 +217,14 @@ sample = {
|
|
| 204 |
"current": {
|
| 205 |
"type": "code",
|
| 206 |
"lang": "python",
|
| 207 |
-
"code": """def quick_sort(array)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 208 |
},
|
| 209 |
"user": "Add Docstring."
|
| 210 |
}
|
|
@@ -275,7 +295,14 @@ sample = {
|
|
| 275 |
"current": {
|
| 276 |
"type": "code",
|
| 277 |
"lang": "python",
|
| 278 |
-
"code": """def quick_sort(array)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 279 |
},
|
| 280 |
"user": "Add Docstring."
|
| 281 |
}
|
|
@@ -344,7 +371,14 @@ sample = {
|
|
| 344 |
"current": {
|
| 345 |
"type": "code",
|
| 346 |
"lang": "python",
|
| 347 |
-
"code": """def quick_sort(array)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 348 |
},
|
| 349 |
"user": "Add Docstring."
|
| 350 |
}
|
|
@@ -416,4 +450,4 @@ CursorCore is still in a very early stage, and lots of work is needed to achieve
|
|
| 416 |
|
| 417 |
## Contribution
|
| 418 |
|
| 419 |
-
Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- TechxGenus/CursorCore-DS-1.3B-LC
|
| 4 |
library_name: transformers
|
|
|
|
| 5 |
license: other
|
| 6 |
license_name: deepseek
|
| 7 |
license_link: LICENSE
|
| 8 |
+
pipeline_tag: text-generation
|
| 9 |
+
tags:
|
| 10 |
+
- code
|
| 11 |
---
|
| 12 |
|
| 13 |
# CursorCore: Assist Programming through Aligning Anything
|
| 14 |
|
| 15 |
<p align="center">
|
| 16 |
+
<a href="https://huggingface.co/papers/2410.07002">[\ud83e\udd17HF Paper]</a> |
|
| 17 |
+
<a href="https://huggingface.co/collections/TechxGenus/cursorcore-series-6706618c38598468866b60e2">[\ud83e\udd16Models]</a> |
|
| 18 |
+
<a href="https://github.com/TechxGenus/CursorCore">[\ud83d\udee0\ufe0fCode]</a> |
|
|
|
|
| 19 |
<a href="https://github.com/TechxGenus/CursorWeb">[Web]</a> |
|
| 20 |
<a href="https://discord.gg/Z5Tev8fV">[Discord]</a>
|
| 21 |
</p>
|
|
|
|
| 115 |
{
|
| 116 |
"type": "code",
|
| 117 |
"lang": "python",
|
| 118 |
+
"code": """def quick_sort(arr):
|
| 119 |
+
if len(arr) <= 1:
|
| 120 |
+
return arr
|
| 121 |
+
pivot = arr[len(arr) // 2]
|
| 122 |
+
left = [x for x in arr if x < pivot]
|
| 123 |
+
middle = [x for x in arr if x == pivot]
|
| 124 |
+
right = [x for x in arr if x > pivot]
|
| 125 |
+
return quick_sort(left) + middle + quick_sort(right)"""
|
| 126 |
}
|
| 127 |
],
|
| 128 |
"current": {
|
| 129 |
"type": "code",
|
| 130 |
"lang": "python",
|
| 131 |
+
"code": """def quick_sort(array):
|
| 132 |
+
if len(arr) <= 1:
|
| 133 |
+
return arr
|
| 134 |
+
pivot = arr[len(arr) // 2]
|
| 135 |
+
left = [x for x in arr if x < pivot]
|
| 136 |
+
middle = [x for x in arr if x == pivot]
|
| 137 |
+
right = [x for x in arr if x > pivot]
|
| 138 |
+
return quick_sort(left) + middle + quick_sort(right)"""
|
| 139 |
},
|
| 140 |
"user": ""
|
| 141 |
}
|
|
|
|
| 217 |
"current": {
|
| 218 |
"type": "code",
|
| 219 |
"lang": "python",
|
| 220 |
+
"code": """def quick_sort(array):
|
| 221 |
+
if len(arr) <= 1:
|
| 222 |
+
return arr
|
| 223 |
+
pivot = arr[len(arr) // 2]
|
| 224 |
+
left = [x for x in arr if x < pivot]
|
| 225 |
+
middle = [x for x in arr if x == pivot]
|
| 226 |
+
right = [x for x in arr if x > pivot]
|
| 227 |
+
return quick_sort(left) + middle + quick_sort(right)"""
|
| 228 |
},
|
| 229 |
"user": "Add Docstring."
|
| 230 |
}
|
|
|
|
| 295 |
"current": {
|
| 296 |
"type": "code",
|
| 297 |
"lang": "python",
|
| 298 |
+
"code": """def quick_sort(array):
|
| 299 |
+
if len(arr) <= 1:
|
| 300 |
+
return arr
|
| 301 |
+
pivot = arr[len(arr) // 2]
|
| 302 |
+
left = [x for x in arr if x < pivot]
|
| 303 |
+
middle = [x for x in arr if x == pivot]
|
| 304 |
+
right = [x for x in arr if x > pivot]
|
| 305 |
+
return quick_sort(left) + middle + quick_sort(right)"""
|
| 306 |
},
|
| 307 |
"user": "Add Docstring."
|
| 308 |
}
|
|
|
|
| 371 |
"current": {
|
| 372 |
"type": "code",
|
| 373 |
"lang": "python",
|
| 374 |
+
"code": """def quick_sort(array):
|
| 375 |
+
if len(arr) <= 1:
|
| 376 |
+
return arr
|
| 377 |
+
pivot = arr[len(arr) // 2]
|
| 378 |
+
left = [x for x in arr if x < pivot]
|
| 379 |
+
middle = [x for x in arr if x == pivot]
|
| 380 |
+
right = [x for x in arr if x > pivot]
|
| 381 |
+
return quick_sort(left) + middle + quick_sort(right)"""
|
| 382 |
},
|
| 383 |
"user": "Add Docstring."
|
| 384 |
}
|
|
|
|
| 450 |
|
| 451 |
## Contribution
|
| 452 |
|
| 453 |
+
Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.
|