LavishKK commited on
Commit
1756ff3
·
verified ·
1 Parent(s): a0bbc82

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,3 +1,36 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ base_model:
6
+ - microsoft/codebert-base
7
+ pipeline_tag: text-classification
8
+ library_name: transformers
9
+ ---
10
+ # Model Card for Model ID
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ <!-- Provide a longer summary of what this model is. -->
17
+
18
+
19
+
20
+ - **Developed by:** Lavish Kamal Kumar
21
+ - **License:** Apache 2.0
22
+ - **Finetuned from model:** microsoft/codebert-base
23
+
24
+
25
+ ## Uses
26
+ This model is a code classifier designed to detect whether a given code snippet is **fast** or **slow** in terms of performance.
27
+
28
+ It is particularly useful for:
29
+ - Flagging potentially inefficient or unoptimized code
30
+ - Assisting automated code review tools
31
+
32
+ The model predicts one of two labels:
33
+ - `LABEL_0`: Fast code (no major performance concerns)
34
+ - `LABEL_1`: Slow code (potential performance issues detected)
35
+
36
+ It works best on short to medium-length code snippets in supported programming languages and is intended for use with the 🤗 Transformers library.