nielsr HF Staff commited on
Commit
5d5b502
·
verified ·
1 Parent(s): b76fad0

Add Project Page Link and Acknowledgements

Browse files

This PR adds a link to the project page and the acknowledgement section to the model card, for better discoverability and a comprehensive overview of relevant projects.

Files changed (1) hide show
  1. README.md +54 -11
README.md CHANGED
@@ -1,22 +1,23 @@
1
  ---
2
- tags:
3
- - code
4
  base_model:
5
  - 01-ai/Yi-Coder-1.5B
6
  library_name: transformers
7
- pipeline_tag: text-generation
8
  license: apache-2.0
 
 
 
9
  ---
10
 
11
  # CursorCore: Assist Programming through Aligning Anything
12
 
13
  <p align="center">
14
  <a href="http://arxiv.org/abs/2410.07002">[📄arXiv]</a> |
15
- <a href="https://hf.co/papers/2410.07002">[🤗HF Paper]</a> |
16
  <a href="https://huggingface.co/collections/TechxGenus/cursorcore-series-6706618c38598468866b60e2">[🤖Models]</a> |
17
  <a href="https://github.com/TechxGenus/CursorCore">[🛠️Code]</a> |
18
  <a href="https://github.com/TechxGenus/CursorWeb">[Web]</a> |
19
- <a href="https://discord.gg/Z5Tev8fV">[Discord]</a>
 
20
  </p>
21
 
22
  <hr>
@@ -31,6 +32,7 @@ license: apache-2.0
31
  - [Future Work](#future-work)
32
  - [Citation](#citation)
33
  - [Contribution](#contribution)
 
34
 
35
  <hr>
36
 
@@ -114,13 +116,27 @@ sample = {
114
  {
115
  "type": "code",
116
  "lang": "python",
117
- "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)"""
 
 
 
 
 
 
 
118
  }
119
  ],
120
  "current": {
121
  "type": "code",
122
  "lang": "python",
123
- "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)"""
 
 
 
 
 
 
 
124
  },
125
  "user": ""
126
  }
@@ -202,7 +218,14 @@ sample = {
202
  "current": {
203
  "type": "code",
204
  "lang": "python",
205
- "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)"""
 
 
 
 
 
 
 
206
  },
207
  "user": "Add Docstring."
208
  }
@@ -273,7 +296,14 @@ sample = {
273
  "current": {
274
  "type": "code",
275
  "lang": "python",
276
- "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)"""
 
 
 
 
 
 
 
277
  },
278
  "user": "Add Docstring."
279
  }
@@ -342,7 +372,14 @@ sample = {
342
  "current": {
343
  "type": "code",
344
  "lang": "python",
345
- "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)"""
 
 
 
 
 
 
 
346
  },
347
  "user": "Add Docstring."
348
  }
@@ -412,6 +449,12 @@ CursorCore is still in a very early stage, and lots of work is needed to achieve
412
  }
413
  ```
414
 
 
 
 
 
 
 
415
  ## Contribution
416
 
417
- 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
  - 01-ai/Yi-Coder-1.5B
4
  library_name: transformers
 
5
  license: apache-2.0
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - code
9
  ---
10
 
11
  # CursorCore: Assist Programming through Aligning Anything
12
 
13
  <p align="center">
14
  <a href="http://arxiv.org/abs/2410.07002">[📄arXiv]</a> |
15
+ <a href="https://huggingface.co/papers/2410.07002">[🤗HF Paper]</a> |
16
  <a href="https://huggingface.co/collections/TechxGenus/cursorcore-series-6706618c38598468866b60e2">[🤖Models]</a> |
17
  <a href="https://github.com/TechxGenus/CursorCore">[🛠️Code]</a> |
18
  <a href="https://github.com/TechxGenus/CursorWeb">[Web]</a> |
19
+ <a href="https://discord.gg/Z5Tev8fV">[Discord]</a> |
20
+ <a href="https://techxgenus.github.io/">[Project Page]</a>
21
  </p>
22
 
23
  <hr>
 
32
  - [Future Work](#future-work)
33
  - [Citation](#citation)
34
  - [Contribution](#contribution)
35
+ - [Acknowledgements](#acknowledgements)
36
 
37
  <hr>
38
 
 
116
  {
117
  "type": "code",
118
  "lang": "python",
119
+ "code": """def quick_sort(arr):
120
+ if len(arr) <= 1:
121
+ return arr
122
+ pivot = arr[len(arr) // 2]
123
+ left = [x for x in arr if x < pivot]
124
+ middle = [x for x in arr if x == pivot]
125
+ right = [x for x in arr if x > pivot]
126
+ return quick_sort(left) + middle + quick_sort(right)"""
127
  }
128
  ],
129
  "current": {
130
  "type": "code",
131
  "lang": "python",
132
+ "code": """def quick_sort(array):
133
+ if len(arr) <= 1:
134
+ return arr
135
+ pivot = arr[len(arr) // 2]
136
+ left = [x for x in arr if x < pivot]
137
+ middle = [x for x in arr if x == pivot]
138
+ right = [x for x in arr if x > pivot]
139
+ return quick_sort(left) + middle + quick_sort(right)"""
140
  },
141
  "user": ""
142
  }
 
218
  "current": {
219
  "type": "code",
220
  "lang": "python",
221
+ "code": """def quick_sort(array):
222
+ if len(arr) <= 1:
223
+ return arr
224
+ pivot = arr[len(arr) // 2]
225
+ left = [x for x in arr if x < pivot]
226
+ middle = [x for x in arr if x == pivot]
227
+ right = [x for x in arr if x > pivot]
228
+ return quick_sort(left) + middle + quick_sort(right)"""
229
  },
230
  "user": "Add Docstring."
231
  }
 
296
  "current": {
297
  "type": "code",
298
  "lang": "python",
299
+ "code": """def quick_sort(array):
300
+ if len(arr) <= 1:
301
+ return arr
302
+ pivot = arr[len(arr) // 2]
303
+ left = [x for x in arr if x < pivot]
304
+ middle = [x for x in arr if x == pivot]
305
+ right = [x for x in arr if x > pivot]
306
+ return quick_sort(left) + middle + quick_sort(right)"""
307
  },
308
  "user": "Add Docstring."
309
  }
 
372
  "current": {
373
  "type": "code",
374
  "lang": "python",
375
+ "code": """def quick_sort(array):
376
+ if len(arr) <= 1:
377
+ return arr
378
+ pivot = arr[len(arr) // 2]
379
+ left = [x for x in arr if x < pivot]
380
+ middle = [x for x in arr if x == pivot]
381
+ right = [x for x in arr if x > pivot]
382
+ return quick_sort(left) + middle + quick_sort(right)"""
383
  },
384
  "user": "Add Docstring."
385
  }
 
449
  }
450
  ```
451
 
452
+ ## Acknowledgements
453
+
454
+ The open-source community has been of great help to us, and we reference numerous projects and applications. They include but are not limited to:
455
+
456
+ [Deepseek-Coder](https://github.com/deepseek-ai/DeepSeek-Coder), [Yi-Coder](https://github.com/01-ai/Yi-Coder), [Qwen-Coder](https://github.com/QwenLM/Qwen2.5-Coder), [Self-Instruct](https://github.com/yizhongw/self-instruct), [Evol-Instruct](https://github.com/theblackcat102/evol-dataset), [OSS-Instruct](https://github.com/ise-uiuc/magicoder), [EvalPlus](https://github.com/evalplus/evalplus), [CanItEdit](https://github.com/nuprl/CanItEdit), [OctoPack](https://github.com/bigcode-project/octopack), [Aider](https://github.com/Aider-AI/aider), [Continue](https://github.com/continuedev/continue), [Cursor](https://github.com/getcursor/cursor), ...
457
+
458
  ## Contribution
459
 
460
+ Contributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or submit a pull request.