ronantakizawa commited on
Commit
6e7a1e0
·
verified ·
1 Parent(s): 51d18dc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -44,12 +44,19 @@ This provides a natural signal for training models to:
44
 
45
  | Column | Type | Description |
46
  |--------|------|-------------|
 
 
 
 
 
 
 
47
  | `before_code` | string | ~50 lines of code around the comment, before the fix |
48
  | `reviewer_comment` | string | The inline review comment text (or "No issues found." for negatives) |
49
  | `after_code` | string | ~50 lines of code around the comment, after the fix |
50
  | `diff_context` | string | The PR diff hunk where the comment was placed |
51
  | `file_path` | string | File path within the repo |
52
- | `comment_line` | int | Line number where the comment was placed (0 for negatives) |
53
  | `language` | string | Programming language |
54
  | `quality_score` | float | Comment quality score (0.0-1.0; 1.0 for negatives) |
55
  | `comment_type` | string | Category: suggestion, question, nitpick, bug, refactor, style, security, performance, none |
@@ -57,13 +64,6 @@ This provides a natural signal for training models to:
57
  | `before_lines` | int | Line count of before code |
58
  | `after_lines` | int | Line count of after code |
59
  | `is_negative` | bool | True if this is a negative example (no reviewer comment) |
60
- | `pr_title` | string | Pull request title |
61
- | `pr_number` | int | PR number |
62
- | `repo_name` | string | Full repo name (owner/repo) |
63
- | `repo_stars` | int | GitHub stars |
64
- | `repo_language` | string | Primary repo language |
65
- | `reviewer_username` | string | Reviewer's GitHub username |
66
- | `author_username` | string | PR author's GitHub username |
67
 
68
  ## Usage
69
 
 
44
 
45
  | Column | Type | Description |
46
  |--------|------|-------------|
47
+ | `pr_title` | string | Pull request title |
48
+ | `pr_number` | int | PR number |
49
+ | `repo_name` | string | Full repo name (owner/repo) |
50
+ | `repo_stars` | int | GitHub stars |
51
+ | `repo_language` | string | Primary repo language |
52
+ | `author_username` | string | PR author's GitHub username |
53
+ | `reviewer_username` | string | Reviewer's GitHub username |
54
  | `before_code` | string | ~50 lines of code around the comment, before the fix |
55
  | `reviewer_comment` | string | The inline review comment text (or "No issues found." for negatives) |
56
  | `after_code` | string | ~50 lines of code around the comment, after the fix |
57
  | `diff_context` | string | The PR diff hunk where the comment was placed |
58
  | `file_path` | string | File path within the repo |
59
+ | `comment_line` | int | Line number within the code chunk (0 for negatives) |
60
  | `language` | string | Programming language |
61
  | `quality_score` | float | Comment quality score (0.0-1.0; 1.0 for negatives) |
62
  | `comment_type` | string | Category: suggestion, question, nitpick, bug, refactor, style, security, performance, none |
 
64
  | `before_lines` | int | Line count of before code |
65
  | `after_lines` | int | Line count of after code |
66
  | `is_negative` | bool | True if this is a negative example (no reviewer comment) |
 
 
 
 
 
 
 
67
 
68
  ## Usage
69