Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Code Comment Quality Classifier 🔍
|
| 2 |
|
| 3 |
A machine learning model that automatically classifies code comments into quality categories to help improve code documentation and review processes.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- text-classification
|
| 6 |
+
- code-quality
|
| 7 |
+
- documentation
|
| 8 |
+
- code-comments
|
| 9 |
+
- developer-tools
|
| 10 |
+
- distilbert
|
| 11 |
+
datasets:
|
| 12 |
+
- synthetic
|
| 13 |
+
metrics:
|
| 14 |
+
- accuracy
|
| 15 |
+
- f1
|
| 16 |
+
- precision
|
| 17 |
+
- recall
|
| 18 |
+
pipeline_tag: text-classification
|
| 19 |
+
widget:
|
| 20 |
+
- text: "This function calculates the Fibonacci sequence using dynamic programming to avoid redundant calculations. Time complexity: O(n), Space complexity: O(n)"
|
| 21 |
+
example_title: "Excellent Comment"
|
| 22 |
+
- text: "Calculates the sum of two numbers and returns the result"
|
| 23 |
+
example_title: "Helpful Comment"
|
| 24 |
+
- text: "does stuff with numbers"
|
| 25 |
+
example_title: "Unclear Comment"
|
| 26 |
+
- text: "DEPRECATED: Use calculate_new() instead. This method will be removed in v2.0"
|
| 27 |
+
example_title: "Outdated Comment"
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
# Code Comment Quality Classifier 🔍
|
| 31 |
|
| 32 |
A machine learning model that automatically classifies code comments into quality categories to help improve code documentation and review processes.
|