This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\newcommand{\fullref}[1]{\nameref*{#1} (Sec.~\ref*{#1})} | |
\begin{figure*}[t] | |
\centering | |
\begin{tikzpicture}[ | |
node distance = -3mm and 3mm, | |
font = \small, | |
BIGBOX/.style={rectangle, draw=color7!80, fill=color7!20, thick, rounded corners=3pt, minimum height=29mm, minimum width=5.6cm}, | |
BOXBASE/.style={rectangle, thick, rounded corners=2pt, minimum height=10mm, minimum width=1.5cm}, | |
BOX1/.style={BOXBASE, draw=color0!60, fill=color0!5}, | |
BOX2/.style={BOXBASE, draw=color1!60, fill=color1!5}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from pathlib import Path | |
EVALIO_DATA = os.environ.get("EVALIO_DATA") | |
if EVALIO_DATA is None: | |
raise ValueError( | |
"EVALIO_DATA environment variable is not set. Please set it to the path where evalio data is stored." | |
) |