Skip to content

Commit f2ffe4f

Browse files
e06084actions-user
andauthored
feat: update auto-gen-metric (#289)
* feat: update auto-gen-metric * 📚 Auto-update metrics documentation --------- Co-authored-by: GitHub Action <[email protected]>
1 parent 958a770 commit f2ffe4f

File tree

5 files changed

+70
-77
lines changed

5 files changed

+70
-77
lines changed

dingo/model/llm/llm_keyword_matcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class LLMKeywordMatcher(BaseOpenAI):
8989
"""
9090

9191
_metric_info = {
92-
"category": "Resume ATS Matching Metrics",
92+
"category": "Resume Quality Assessment Metrics",
9393
"metric_name": "LLMKeywordMatcher",
9494
"description": "Semantic keyword matching between resume and job description",
9595
"paper_title": "N/A",

dingo/model/llm/llm_resume_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class LLMResumeOptimizer(BaseOpenAI):
3939
"""
4040

4141
_metric_info = {
42-
"category": "Resume ATS Optimization Metrics",
42+
"category": "Resume Quality Assessment Metrics",
4343
"metric_name": "LLMResumeOptimizer",
4444
"description": "ATS-focused resume optimization with keyword injection and STAR polishing",
4545
"paper_title": "N/A",

dingo/model/rule/rule_xinghe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@Model.rule_register("QUALITY_BAD_EFFECTIVENESS", ["xinghe"])
1111
class RuleDoi(BaseRule):
1212
_metric_info = {
13-
"category": "Xinghe Data Quality Metrics",
13+
"category": "Rule-Based TEXT Quality Metrics",
1414
"quality_dimension": "EFFECTIVENESS",
1515
"metric_name": "RuleDoi",
1616
"description": "Check whether the string is in the correct format of the doi",
@@ -38,7 +38,7 @@ def eval(cls, input_data: Data) -> EvalDetail:
3838
@Model.rule_register("QUALITY_BAD_EFFECTIVENESS", ["xinghe"])
3939
class RuleIsbn(BaseRule):
4040
_metric_info = {
41-
"category": "Xinghe Data Quality Metrics",
41+
"category": "Rule-Based TEXT Quality Metrics",
4242
"quality_dimension": "EFFECTIVENESS",
4343
"metric_name": "RuleIsbn",
4444
"description": "Check whether the string is in the correct format of the isbn",

0 commit comments

Comments
 (0)