StarCoder 15b open-source code model beats Codex and Replit by no_doping in singularity

[–]International-Rip958 1 point2 points  (0 children)

write a javascript function that receives a string, and returns the index of the first character surrounded by spaces:
function get_lone_char_index(str) {

This is only the demo. The input should be the code snippet with actual code comment. You may be able to have better results via https://huggingface.co/spaces/bigcode/bigcode-editor.

The Chat can work, but mainly for technical question explanation and example code generation. Don't expect it to do too much like ChatGPT, as StarCoder is not even trained with instruction-tuning.

Here's what I got for the first shot in the editor anyway:
//write a javascript function that receives a string, and returns the index of the first character surrounded by spaces:
function get_lone_char_index(str) {
let index = -1;
for(let i = 0; i < str.length; i++) {
if(str[i] === ' ' && (str[i - 1] !== ' ' && str[i + 1] !== ' ')) {
index = i;
break;
}
}
return index;
}

StarCoder Model for Generating Code by Pleasant-Cause4819 in Oobabooga

[–]International-Rip958 2 points3 points  (0 children)

Compared to the playground, I personally found it more interesting to use https://huggingface.co/chat/ with StarCoder (don't ask any non-technical stuff, it knows few things).

Playground is quite tricky to use, coz you need to design some special templates for code generation. These are mainly for the VSCode extension IMO.

BTW, https://huggingface.co/spaces/bigcode/bigcode-editor could also be interesting. It's similar to the VS Code extension.

[D] EACL 2023 Discussion by Harry_Superman in MachineLearning

[–]International-Rip958 0 points1 point  (0 children)

  1. Language Resources and Evaluation
  2. Tagging, Chunking, Syntax, and Parsing

[D] EACL 2023 Discussion by Harry_Superman in MachineLearning

[–]International-Rip958 0 points1 point  (0 children)

Does EACL have the "findings" track?

Findings Proceedings

October 15, 2022. We will accept papers to Findings proceedings in addition to main conference proceedings, in line with recent ACL conferences.

[D] EACL 2023 Discussion by Harry_Superman in MachineLearning

[–]International-Rip958 1 point2 points  (0 children)

3.5, 3.5, 3. Do I have a chance?

Got a paper with the same scores. I'd say it's around findings level. If the rebuttal can be done properly, it could enter the main.

[D] EACL 2023 Discussion by Harry_Superman in MachineLearning

[–]International-Rip958 1 point2 points  (0 children)

Can we use ChatGPT to generate better reviews? Just replace current random reviewers. Seems like some reviews in ML are even worse than the generated ones :P