Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

first try of count_lit_ref #564

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

MarinaProsche
Copy link
Collaborator

Задача: #539
В данном PR основа для критерия поиска ссылок на источники в определенных разделах.
В классе StyleCheckSettings изменена конфигурация словарей типов проверяемых файлов: добавлен ключ "headers_for_lit_count".
Сейчас для примера выбраны (закомментированы) разделы, которые наиболее часто встречаются в работах НИР и ВКР.

Необходимы уточнения:

  • какие именно разделы следует учитывать.
  • критерии оценки (минимальный или максимальный порог).

description = ''
id = 'references_in_chapter_check'

def __init__(self, file_info, chapters_for_lit_ref = {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

какие именно разделы следует учитывать
критерии оценки (минимальный или максимальный порог).

разделы и пороги подаем в качестве аргумента критерия - словарь

Пример:

{
    'введение': [1, 10],
    'определения, обозначения и сокращения': [0, 5],
    'заключение': [1;5]
}

Оценка критерия = процент разделов попавших в нужный интервал

  • количество разделов, прошедших проверку / количество проверяемых разделов)

Можно добавить верхние и нижние пороги:

  • если вычисленная оценка < min -> за критерий 0
  • если вычисленная оценка < max -> за критерий 1

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HadronCollider Логика исправлена. Требуется установить min и max (сейчас 0 и 0), а также указать разделы.

@github-actions github-actions bot added the has conflicts if new merge has conflicts label Sep 2, 2024
@github-actions github-actions bot removed the has conflicts if new merge has conflicts label Sep 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants