add writer evals 8 examples

This commit is contained in:
thomasshin
2024-01-22 23:22:44 +08:00
parent 7e61ab7e53
commit 61b145ab13
10 changed files with 499 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ from typing import List, Dict, Any
from docx import Document
from docx.enum.text import WD_PARAGRAPH_ALIGNMENT
from docx.shared import RGBColor
logger = logging.getLogger("desktopenv.metric.docs")
@@ -197,3 +198,162 @@ def compare_contains_image(docx_file1, docx_file2):
# config_path = "/home/[username]/.config/libreoffice/4/user/registrymodifications.xcu"
# print(find_default_font("Ani", config_path))
def evaluate_colored_words_in_tables(file_path):
document = Document(file_path)
for table in document.tables:
# Iterate through rows and cells in the table
for row in table.rows:
for cell in row.cells:
for paragraph in cell.paragraphs:
for run in paragraph.runs:
word = run.text
if word:
first_letter = word[0].lower()
if first_letter in 'aeiou' and run.font.color.rgb != RGBColor(255, 0, 0):
return 0 # Vowel-colored words should be red
elif first_letter not in 'aeiou' and run.font.color.rgb != RGBColor(0, 0, 255):
return 0 # Non-vowel-colored words should be blue
return 1 # All words in tables are correctly colored
def check_highlighted_words(file_path):
document = Document(file_path)
for paragraph in document.paragraphs:
for run in paragraph.runs:
if run.font.highlight_color is not None:
return 0 # Highlighted words found
return 1 # No highlighted words found
def evaluate_strike_through_last_paragraph(file_path):
document = Document(file_path)
# Get the last paragraph
last_paragraph = document.paragraphs[-1]
# Check if any run in the last paragraph has strike-through formatting
for run in last_paragraph.runs:
if not run.font.strike:
return 0 # At least one word does not have strike-through formatting
return 1 # All words in the last paragraph have strike-through formatting
def evaluate_conversion(file_path):
document = Document(file_path)
for table in document.tables:
for row in table.rows:
for cell in row.cells:
for paragraph in cell.paragraphs:
for run in paragraph.runs:
if run.text.isupper():
return 0 # Uppercase text should be converted to lowercase
for paragraph in document.paragraphs:
for run in paragraph.runs:
if run.text.isupper():
return 0 # Uppercase text should be converted to lowercase
return 1 # All uppercase text has been successfully converted
def evaluate_spacing(file_path):
document = Document(file_path)
# Check line spacing for introduction, body, and conclusion
introduction_spacing = document.paragraphs[0].paragraph_format.line_spacing
body_spacing = document.paragraphs[1].paragraph_format.line_spacing
conclusion_spacing = document.paragraphs[2].paragraph_format.line_spacing
if (introduction_spacing == 1.0 and body_spacing == 2.0 and conclusion_spacing == 1.5):
return 1
else:
return 0
def check_italic_font_size_14(path):
document = Document(path)
for paragraph in document.paragraphs:
for run in paragraph.runs:
if run.italic:
# Check if font size is 14
if run.font.size is None or run.font.size.pt != 14:
return 0
return 1
def evaluate_alignment(docx_path):
# Load the document
doc = Document(docx_path)
# Iterate through each paragraph in the document
for para in doc.paragraphs:
# Split the paragraph into individual sentences
sentences = para.text.split('.')
for sentence in sentences:
# Split the sentence into words
words = sentence.strip().split()
# Check if the sentence has at least three words
if len(words) < 3:
continue # Skip sentences with less than three words
# The first three words should be separated from the rest
first_part = ' '.join(words[:3])
second_part = ' '.join(words[3:])
# Check if the sentence structure matches the pattern: first part + large space/tab + second part
if not (first_part in sentence and second_part in sentence and sentence.find(first_part) < sentence.find(second_part)):
return 0 # The sentence does not meet the alignment criteria
return 1 # All sentences meet the alignment criteria
def get_unique_train_ids(initial_file): #fixed standard
doc = Document(initial_file)
train_ids = set()
processed_lines = 0
for para in doc.paragraphs:
line_parts = para.text.split(',')
if len(line_parts) == 4:
train_id = line_parts[1].strip()
if train_id not in train_ids:
train_ids.add(train_id)
processed_lines += 1
return train_ids, processed_lines
def check_no_duplicates(initial_file, processed_file):
# Open the document
train_ids_ini, ini_lines = get_unique_train_ids(initial_file)
doc_processed = Document(processed_file)
train_ids_pro = set()
processed_lines = 0 # Counter for valid lines processed
# processed
for para in doc_processed.paragraphs:
# Each line has the format: time_HH:MM:SS, train_id, station_id, platform_no
line_parts = para.text.split(',')
# Ensure the line has the correct format
if len(line_parts) == 4:
train_id = line_parts[1].strip()
# If train_id is already in the set, it's a duplicate
if train_id in train_ids_pro:
return 0 # Duplicate found
train_ids_pro.add(train_id)
processed_lines += 1 # Increment valid lines counter
if train_ids_pro != train_ids_ini or processed_lines != ini_lines:
return 0
# No duplicates found and at least one valid line was processed
return 1