Unverified Commit 8f3395d5 authored by Vít Novotný's avatar Vít Novotný
Browse files

Add type hints (cont.)

parent 04e077c0
......@@ -2,16 +2,16 @@
from copy import deepcopy
from math import log2
from typing import Optional, Set, Dict
import numpy as np
import scipy.stats as st
from typing import Optional, Set
from .configuration import EVALUATORS, PARSED_RELEVANCE_JUDGEMENTS
Scores = dict[str, float]
ParsedRun = dict[str, Scores]
Scores = Dict[str, float]
ParsedRun = Dict[str, Scores]
Task = str
Subset = str
Topic = str
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment