File size: 7,649 Bytes
d9bb75c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | # Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This software may be used and distributed in accordance with
# the terms of the DINOv3 License Agreement.
import json
import logging
import os
from contextlib import nullcontext
from enum import Enum
from os import PathLike
from typing import IO, Any, Callable, Dict, List, Optional, Sequence, Union
import pandas as pd
import yaml # type: ignore
logger = logging.getLogger("dinov3")
# This type represents a list of results, e.g. baselines for an evaluation.
Results: Any = pd.DataFrame
try:
import openpyxl # noqa: 401
HAS_OPENPYXL = True
except ImportError:
HAS_OPENPYXL = False
logger.warning("can't import openpyxl package")
PathOrFileLikeObject = Union[str, PathLike, IO]
class FileFormat(Enum):
CSV = "csv"
JSON_LINES = "json-lines"
EXCEL = "excel"
YAML = "yaml"
@staticmethod
def guess(path: Union[str, PathLike]) -> "FileFormat":
_, ext = os.path.splitext(path)
supported_exts = {
".csv": FileFormat.CSV,
".jsonl": FileFormat.JSON_LINES,
".excel": FileFormat.EXCEL,
".yaml": FileFormat.YAML,
}
if ext not in supported_exts:
raise ValueError(f"Passed path has extension {ext}, only {list(supported_exts.keys())} are supported.")
return supported_exts[ext]
_INT_DTYPES = [
pd.Int8Dtype(),
pd.Int16Dtype(),
pd.Int32Dtype(),
pd.UInt8Dtype(),
pd.UInt16Dtype(),
pd.UInt32Dtype(),
pd.Int64Dtype(),
]
_FLOAT_DTYPES = [
pd.Float32Dtype(),
pd.Float64Dtype(),
]
_TO_STRING_DTYPES = [
pd.BooleanDtype(),
]
_VALID_DTYPES = [
pd.StringDtype(),
pd.Int64Dtype(),
pd.Float64Dtype(),
]
def _map_dtypes(results: Results) -> Results:
results = results.convert_dtypes(
infer_objects=True,
convert_string=True,
convert_integer=True,
convert_boolean=True,
convert_floating=True,
)
for column_name in results.columns:
if results.dtypes[column_name] in _INT_DTYPES:
results[column_name] = results[column_name].astype(pd.Int64Dtype())
elif results.dtypes[column_name] in _FLOAT_DTYPES:
results[column_name] = results[column_name].astype(pd.Float64Dtype())
elif results.dtypes[column_name] in _TO_STRING_DTYPES:
results[column_name] = results[column_name].astype(pd.StringDtype())
return results
def _validate_column(results: Results, *, name: str, dtype: Union[str, type]) -> bool:
try:
loc = results.columns.get_loc(name)
except KeyError:
return False
return results.dtypes[loc] == dtype
def _validate(results: Results) -> bool:
for column_name in results.columns:
dtype = results.dtypes[column_name]
if dtype not in _VALID_DTYPES:
return False
return True
def _assert_valid_dtypes(results: Results) -> None:
assert _validate(results), f"All dtypes from {results.dtypes} must be in {_VALID_DTYPES}"
Scalar = Union[str, int, float]
def _map_scalar(x: Scalar) -> List[Scalar]:
return [x]
def _map_scalar_list(x: List[Scalar]) -> List[Scalar]:
return x
def make(data: Dict[str, Union[str, int, float]]) -> Results:
"""Construct results from a dictionary of scalars or lists of scalars."""
map_value: Callable[..., List[Scalar]]
if all((isinstance(value, Sequence) for key, value in data.items())):
map_value = _map_scalar_list
else:
map_value = _map_scalar
results = pd.DataFrame({key: map_value(value) for key, value in data.items()})
results = _map_dtypes(results)
_assert_valid_dtypes(results)
return results
def vstack(*results_sequence: Sequence[Results]) -> Results:
"""Concatenate (vertically) results."""
return pd.concat(results_sequence, axis=0, ignore_index=True)
def load(f: PathOrFileLikeObject, file_format: Optional[FileFormat] = None) -> Results:
"""Load results from a file via a path-like object or from a file-like object."""
if isinstance(f, (str, PathLike)):
file_format = FileFormat.guess(f)
elif file_format is None:
raise ValueError("No file format specified for file-like object")
assert file_format is not None
if file_format == FileFormat.CSV:
results = pd.read_csv(f, sep=",", na_values="", header=0)
elif file_format == FileFormat.JSON_LINES:
results = pd.read_json(f, lines=True)
elif file_format == FileFormat.EXCEL:
results = pd.read_excel(f)
elif file_format == FileFormat.YAML:
with open(f) as file: # type: ignore
results = pd.DataFrame.from_dict(yaml.safe_load(file), orient="index")
else:
raise ValueError("Unsupported file format: {file_format}")
results = _map_dtypes(results)
_assert_valid_dtypes(results)
return results
def load_collection(f: PathOrFileLikeObject) -> Dict[str, Results]:
"""Load a collection of results from a file via a path-like object or from a file-like object."""
results_collection = pd.read_excel(f, sheet_name=None)
for sheet_name, results in results_collection.items():
results = _map_dtypes(results)
_assert_valid_dtypes(results)
results_collection[sheet_name] = results
return results_collection
def save(
results: Sequence[Results],
f: PathOrFileLikeObject,
file_format: Optional[FileFormat] = None,
) -> None:
"""Save results to a file via a path-like object or to a file-like object."""
_assert_valid_dtypes(results)
if isinstance(f, (str, PathLike)):
file_format = FileFormat.guess(f)
elif file_format is None:
raise ValueError("No file format specified for file-like object")
assert file_format is not None
if file_format == FileFormat.CSV:
results.to_csv(f, index=False, header=True, sep=",", na_rep="") # type: ignore
elif file_format == FileFormat.JSON_LINES:
# NOTE: pandas escapes '/' characters
s = results.to_json(orient="records", lines=True, indent=None) # type: ignore
if isinstance(f, (str, PathLike)):
context = open(f, "w") # type: ignore
else:
context = nullcontext(enter_result=f) # type: ignore
with context as f:
for line in s.splitlines():
line = json.dumps(json.loads(line), separators=(",", ":"))
f.write(line + "\n")
elif file_format == FileFormat.EXCEL:
results.to_excel(f, header=True, index=False, na_rep="") # type: ignore
elif file_format == FileFormat.YAML:
with open(f, "w") as fp: # type: ignore
yaml.safe_dump(results.to_dict(orient="index"), fp, default_flow_style=False) # type: ignore
else:
raise ValueError("Unsupported file format: {file_format}")
def save_from_dict(
results_dict: Dict[str, Union[str, int, float]],
results_path: PathOrFileLikeObject,
) -> None:
results = make(results_dict)
save(results, results_path)
def save_collection(
results_collection: Dict[str, Results],
f: PathOrFileLikeObject,
) -> None:
"""Save a collection of results to a file via a path-like object or to a file-like object."""
if not HAS_OPENPYXL:
logger.warning("openpyxl need to be installed, passing...")
return
with pd.ExcelWriter(f, engine="openpyxl", mode="w") as writer:
for sheet_name, results in results_collection.items():
_assert_valid_dtypes(results)
results.to_excel(writer, sheet_name=sheet_name, header=True, index=False, na_rep="")
|