File size: 22,741 Bytes
d3d89b3 | 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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 | # README
# Phillip Long
# August 3, 2024
# Analyze the evaluation a REMI-Style model.
# python /home/pnlong/model_musescore/modeling/analysis.py
# IMPORTS
##################################################
import argparse
import logging
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
from os.path import exists
from os import mkdir
from os.path import dirname, realpath
import sys
sys.path.insert(0, dirname(realpath(__file__)))
sys.path.insert(0, dirname(dirname(realpath(__file__))))
from wrangling.full import DATASET_DIR_NAME, MMT_STATISTIC_COLUMNS
from wrangling.full import OUTPUT_DIR as DATASET_OUTPUT_DIR
from wrangling.deduplicate import FACETS, make_facet_for_table
from wrangling.quality import make_facet_name_fancy, PLOTS_DIR_NAME
from dataset import OUTPUT_DIR, RANDOM_FACET
from train import RELEVANT_PARTITIONS, FINE_TUNING_SUFFIX
from evaluate import OUTPUT_COLUMNS, loss_to_perplexity
import utils
plt.style.use("default")
# plt.rcParams["font.family"] = "serif"
# plt.rcParams["mathtext.fontset"] = "dejavuserif"
##################################################
# CONSTANTS
##################################################
COLUMNS = ["facet"] + OUTPUT_COLUMNS
##################################################
# HELPER FUNCTIONS
##################################################
# convert matrix of histograms (as rows) to fractions
def convert_to_fraction(data: np.array) -> np.array:
"""Helper function to convert histograms (as rows) to fractions of the sum of each column."""
bin_sums = np.sum(a = data, axis = 0)
bin_sums += (bin_sums == 0) # replace 0s with 1s to avoid divide by zero error
data_matrix = data / bin_sums
return data_matrix
##################################################
# ARGUMENTS
##################################################
def parse_args(args = None, namespace = None):
"""Parse command-line arguments."""
parser = argparse.ArgumentParser(prog = "Evaluate Analysis", description = "Analyze the evaluation a REMI-Style Model.")
parser.add_argument("-d", "--input_dir", default = OUTPUT_DIR, type = str, help = "Directory containing facets (as subdirectories) to evaluate")
parser.add_argument("-df", "--dataset_filepath", default = f"{DATASET_OUTPUT_DIR}/{DATASET_DIR_NAME}.csv", type = str, help = "Dataset from which facets are derived")
parser.add_argument("-m", "--model", default = None, type = str, help = "Name of the model to evaluate for each different facet")
parser.add_argument("-ir", "--include_random", action = "store_true", help = "Whether or not to include random subset in table")
return parser.parse_args(args = args, namespace = namespace)
##################################################
# MAIN METHOD
##################################################
if __name__ == "__main__":
# SET UP
##################################################
# parse the command-line arguments
args = parse_args()
# create output directory
output_dir = f"{args.input_dir}/{PLOTS_DIR_NAME}"
if not exists(output_dir):
mkdir(output_dir)
# set up the logger
logging.basicConfig(level = logging.INFO, format = "%(message)s")
# create full dataset
output_filepath_dataset = f"{args.input_dir}/evaluation.csv"
if exists(output_filepath_dataset):
dataset = pd.read_csv(filepath_or_buffer = output_filepath_dataset, sep = ",", header = 0, index_col = False)
else:
dataset = pd.DataFrame(columns = COLUMNS)
for facet in FACETS + [RANDOM_FACET]:
data = pd.read_csv(filepath_or_buffer = f"{args.input_dir}/{facet}/evaluation.csv", sep = ",", header = 0, index_col = False)
data["facet"] = utils.rep(x = facet, times = len(data))
dataset = pd.concat(objs = (dataset, data[COLUMNS]), axis = 0, ignore_index = True)
del data
dataset = dataset.sort_values(by = ["facet", "model"], axis = 0, ascending = True, ignore_index = True)
dataset.to_csv(path_or_buf = output_filepath_dataset, sep = ",", na_rep = utils.NA_STRING, header = True, index = False, mode = "w") # output dataset
# wrangle dataset slightly
facets_for_table = sorted(FACETS) + ([RANDOM_FACET] if args.include_random else [])
dataset = dataset[np.isin(dataset["facet"], test_elements = facets_for_table)] # ensure correct facets
for mmt_statistic_column in MMT_STATISTIC_COLUMNS[1:]:
dataset[mmt_statistic_column] *= 100 # convert consistency columns to percentages
# load in real dataset
dataset_real = pd.read_csv(filepath_or_buffer = args.dataset_filepath, sep = ",", header = 0, index_col = False)
fine_tuning_mmt_statistics = dataset_real[dataset_real[f"facet:{FACETS[-1]}"] & (dataset_real["rating"] > np.percentile(a = dataset_real.loc[dataset_real[f"facet:{FACETS[-1]}"], "rating"], q = 50))][MMT_STATISTIC_COLUMNS].mean()
for mmt_statistic_column in MMT_STATISTIC_COLUMNS[1:]:
fine_tuning_mmt_statistics[mmt_statistic_column] *= 100 # convert consistency columns to percentages
# determine model to analyze; assumes the same models have been created for each facet
models = set(pd.unique(values = dataset["model"]))
model = (str(max(map(lambda model: int(model.split("_")[0][:-1]), models))) + "M") if args.model is None else args.model
if model not in models:
raise RuntimeError(f"`{model}` is not a valid model.")
# output mmt statistics and perplexity
bar_width = 100
correct_model = list(map(lambda model_name: model_name.startswith(model), dataset["model"]))
sort_facets = lambda facets: pd.Index(facets.to_series().apply(lambda facet: facets_for_table.index(facet) if facet in facets_for_table else len(facets_for_table)))
float_formatter = lambda num: f"{num:.2f}"
logging.info(f"\n{' MMT STATISTICS ':=^{bar_width}}\n") # mmt statistics
mmt_statistics = dataset.loc[correct_model, ["facet", "model"] + MMT_STATISTIC_COLUMNS].groupby(by = ["model", "facet"]).agg(["mean", "sem"]).sort_index(axis = 0, level = "facet", ascending = True, key = sort_facets)
logging.info(mmt_statistics.to_string(float_format = float_formatter))
logging.info(f"\n{' PERPLEXITY ':=^{bar_width}}\n") # perplexity
loss_facet_columns = list(filter(lambda column: column.startswith("loss:"), dataset.columns))
perplexity = dataset.loc[correct_model, ["facet", "model"] + loss_facet_columns].groupby(by = ["model", "facet"]).agg(loss_to_perplexity).sort_index(axis = 0, level = "facet", ascending = True, key = sort_facets) # group by model and facet
perplexity = perplexity.rename(columns = dict(zip(loss_facet_columns, map(lambda loss_facet_column: loss_facet_column[len("loss:"):].replace(f"{FACETS[-1]}", "").replace("-", "").replace("_", ""), loss_facet_columns)))) # rename columns
logging.info(perplexity.to_string(float_format = float_formatter))
logging.info("\n" + "".join(("=" for _ in range(bar_width))))
# output latex table to file
output_filepath_table = f"{output_dir}/results.txt"
def get_latex_table_helper(fine_tuned: bool = False, include_perplexity: bool = False) -> str:
"""Helper function to output a latex table."""
table = pd.DataFrame(
data = {
"facet": list(map(lambda facet: make_facet_for_table(facet = facet) if (facet != RANDOM_FACET) else ("\\RaggedRight{" + RANDOM_FACET.title() + "}"), facets_for_table)),
"fine_tuned": utils.rep(x = "\cmark" if fine_tuned else "", times = len(facets_for_table)),
}
)
model_name = model + (f"_{FINE_TUNING_SUFFIX}" if fine_tuned else "")
mmt_statistics_model = mmt_statistics.xs(key = model_name, level = 0, axis = 0)
for mmt_statistic in MMT_STATISTIC_COLUMNS:
table[mmt_statistic] = list(map(lambda facet: f"{mmt_statistics_model.at[facet, (mmt_statistic, 'mean')]:.2f} $\pm$ {mmt_statistics_model.at[facet, (mmt_statistic, 'sem')]:.2f}", facets_for_table))
i_significant = np.argsort(a = np.absolute(mmt_statistics_model[(mmt_statistic, "mean")] - fine_tuning_mmt_statistics[mmt_statistic]), axis = 0)
table.at[i_significant[0], mmt_statistic] = "\\bf{" + table.at[i_significant[0], mmt_statistic] + "}"
table.at[i_significant[1], mmt_statistic] = "\\underline{" + table.at[i_significant[1], mmt_statistic] + "}"
if include_perplexity:
perplexity_model = perplexity.xs(key = model_name, level = 0, axis = 0)
for perplexity_column in filter(lambda perplexity_column: perplexity_column != FACETS[0], perplexity.columns):
table[perplexity_column] = list(map(lambda facet: f"{perplexity_model.at[facet, perplexity_column]:.2f}", facets_for_table))
i_significant = np.argsort(a = perplexity_model[perplexity_column], axis = 0) # lower peplexity is better
table.at[i_significant[0], perplexity_column] = "\\bf{" + table.at[i_significant[0], perplexity_column] + "}"
table.at[i_significant[1], perplexity_column] = "\\underline{" + table.at[i_significant[1], perplexity_column] + "}"
table_string = ""
for i in table.index:
table_string += " & ".join(table.loc[i, :].values.tolist()) + " \\\\\n"
return table_string
with open(output_filepath_table, "w") as output_file:
output_file.write(get_latex_table_helper(fine_tuned = False))
output_file.write("\\midrule\n")
output_file.write(get_latex_table_helper(fine_tuned = True))
logging.info(f"Saved table to {output_filepath_table}.")
logging.info("".join(("=" for _ in range(bar_width))) + "\n")
del correct_model, mmt_statistics, perplexity
# remove part of dataset we don't need
dataset = dataset[dataset["model"] == model]
##################################################
# PLOTTING CONSTANTS
##################################################
# plotting constants
n_bins = 12
range_multiplier_constant = 1.001
realness_names = ["actual", "generated"]
legend_title = "Facet"
legend_title_fontsize = "large"
legend_fontsize = "medium"
plot_to_legend_ratio = 3
output_filepath_prefix = f"{output_dir}/evaluation.{model}"
##################################################
# PLOT LINE PLOT
##################################################
# create plot
fig, axes = plt.subplot_mosaic(mosaic = [MMT_STATISTIC_COLUMNS[:-1], [MMT_STATISTIC_COLUMNS[-1], "legend"]], constrained_layout = True, figsize = (8, 6))
fig.suptitle(f"Evaluating {model} Model Performance", fontweight = "bold")
# plotting function
def plot_mmt_statistic(mmt_statistic: str) -> None:
"""Plot information on MMT-style statistic in evaluations."""
# left side will be fraction, right will be count
count_axes = axes[mmt_statistic].twinx()
# loop through facets
for facet in FACETS:
# get histogram values
data_values = dataset[dataset["facet"] == facet][mmt_statistic]
min_data, max_data = min(data_values), max(data_values)
data_range = max_data - min_data
margin = ((range_multiplier_constant - 1) / 2) * data_range
bin_width = (range_multiplier_constant * data_range) / n_bins
bins = np.arange(start = min_data - margin, stop = max_data + margin + (bin_width / 2), step = bin_width)
data, bins = np.histogram(a = data_values, bins = bins) # create histogram
bin_centers = [(bins[i] + bins[i + 1]) / 2 for i in range(len(bins) - 1)] # get centerpoints of each bin
# plot
axes[mmt_statistic].plot(bin_centers, data / sum(data), label = facet) # fraction
count_axes.plot(bin_centers, data, label = facet) # count
# axes labels and such
axes[mmt_statistic].set_xlabel("Value")
axes[mmt_statistic].set_ylabel("Fraction")
count_axes.set_ylabel("Count")
axes[mmt_statistic].set_title(mmt_statistic.replace("_", " ").title())
axes[mmt_statistic].grid()
# plot plots
for mmt_statistic_column in MMT_STATISTIC_COLUMNS:
plot_mmt_statistic(mmt_statistic = mmt_statistic_column)
# plot legend
handles, labels = axes[MMT_STATISTIC_COLUMNS[0]].get_legend_handles_labels()
by_label = dict(zip(labels, handles))
axes["legend"].legend(handles = by_label.values(), labels = list(map(make_facet_name_fancy, by_label.keys())),
loc = "center", fontsize = legend_fontsize, title_fontsize = legend_title_fontsize, alignment = "center",
ncol = 1, title = legend_title, mode = "expand")
axes["legend"].axis("off")
# save image
output_filepath_plot = f"{output_filepath_prefix}.lines.pdf"
fig.savefig(output_filepath_plot, dpi = 200, transparent = True, bbox_inches = "tight")
logging.info(f"Saved figure to {output_filepath_plot}.")
##################################################
# PLOT STACKED PLOT
##################################################
# create plot
fig, axes = plt.subplot_mosaic(
mosaic = (
utils.rep(x = list(map(lambda mmt_statistic: f"{realness_names[0]}.{mmt_statistic}", MMT_STATISTIC_COLUMNS)), times = plot_to_legend_ratio) +
utils.rep(x = list(map(lambda mmt_statistic: f"{realness_names[1]}.{mmt_statistic}", MMT_STATISTIC_COLUMNS)), times = plot_to_legend_ratio) +
[utils.rep(x = "legend", times = len(MMT_STATISTIC_COLUMNS))]
),
constrained_layout = True, figsize = (10, 7))
fig.suptitle(f"Comparing Facets in Actual versus Generated Music")
# plotting function
def plot_mmt_statistic_stacked(mmt_statistic: str) -> None:
"""Plot information on MMT-style statistic in evaluations."""
# get the range of data
data_values = pd.concat(objs = (dataset[mmt_statistic], dataset_real[mmt_statistic]), axis = 0)
min_data, max_data = min(data_values), max(data_values)
data_range = max_data - min_data
margin = ((range_multiplier_constant - 1) / 2) * data_range
bin_width = (range_multiplier_constant * data_range) / n_bins
bins = np.arange(start = min_data - margin, stop = max_data + margin + (bin_width / 2), step = bin_width)
bin_centers = [(bins[i] + bins[i + 1]) / 2 for i in range(len(bins) - 1)] # get centerpoints of each bin
# get histograms and convert to fraction
data = {
realness_names[0]: np.array(list(map(lambda facet: np.histogram(a = dataset_real[dataset_real[f"facet:{facet}"]][mmt_statistic], bins = bins)[0], FACETS))), # real
realness_names[1]: np.array(list(map(lambda facet: np.histogram(a = dataset[dataset["facet"] == facet][mmt_statistic], bins = bins)[0], FACETS))), # generated
}
data = {realness_name: data_values / np.sum(a = data_values, axis = 1).reshape(-1, 1) for realness_name, data_values in data.items()} # normalize data such that it's like every facet has the same number of songs
data = {realness_name: convert_to_fraction(data = data_values) for realness_name, data_values in data.items()} # convert to fraction
# loop through facets and plot
axes_names = list(map(lambda realness_name: f"{realness_name}.{mmt_statistic}", realness_names))
for realness_name, axes_name in zip(realness_names, axes_names):
for i, facet in enumerate(FACETS):
axes[axes_name].bar(x = bin_centers, height = data[realness_name][i], width = bin_width, bottom = np.sum(a = data[realness_name][:i, :], axis = 0), label = facet)
axes[axes_name].set_xlabel(mmt_statistic.replace("_", " ").title())
axes[axes_name].set_xlim(left = bins[0], right = bins[-1])
axes[axes_name].set_ylabel("")
axes[axes_name].set_ylim(bottom = 0, top = 1)
axes[axes_name].grid()
# add title if needed
if mmt_statistic == MMT_STATISTIC_COLUMNS[1]:
axes[axes_names[0]].set_title("\nActual Data\n", fontweight = "bold")
axes[axes_names[1]].set_title(f"\nGenerated by {model} Model\n", fontweight = "bold")
# plot plots
for mmt_statistic in MMT_STATISTIC_COLUMNS:
plot_mmt_statistic_stacked(mmt_statistic = mmt_statistic)
# plot legend
handles, labels = axes[f"{realness_names[0]}.{MMT_STATISTIC_COLUMNS[0]}"].get_legend_handles_labels()
by_label = dict(zip(labels, handles))
axes["legend"].legend(handles = by_label.values(), labels = list(map(make_facet_name_fancy, by_label.keys())),
loc = "center", fontsize = legend_fontsize, title_fontsize = legend_title_fontsize, alignment = "center",
ncol = len(FACETS), title = legend_title, mode = "expand")
axes["legend"].axis("off")
# save image
output_filepath_plot = f"{output_filepath_prefix}.stacked.pdf"
fig.savefig(output_filepath_plot, dpi = 200, transparent = True, bbox_inches = "tight")
logging.info(f"Saved figure to {output_filepath_plot}.")
##################################################
# DIFFERENT LINES PLOT
##################################################
# plotting function
def plot_mmt_statistic_faceted(facet: str) -> None:
"""Plot information on MMT-style statistic in evaluations."""
# create plot
fig, axes = plt.subplot_mosaic(
mosaic = utils.rep(x = MMT_STATISTIC_COLUMNS, times = plot_to_legend_ratio * 2) + [utils.rep(x = "legend", times = len(MMT_STATISTIC_COLUMNS))],
constrained_layout = True,
figsize = (12, 5))
fig.suptitle(f"Comparing {make_facet_name_fancy(facet = facet)} Facet in Actual versus Generated Music")
# get faceted dataset
dataset_facet = dataset[dataset["facet"] == facet]
dataset_real_facet = dataset_real[dataset_real[f"facet:{facet}"]]
# go through different mmt statistics
for mmt_statistic in MMT_STATISTIC_COLUMNS:
# # get the range of data
# data_values = pd.concat(objs = (dataset_facet[mmt_statistic], dataset_real_facet[mmt_statistic]), axis = 0)
# min_data, max_data = min(data_values), max(data_values)
# data_range = max_data - min_data
# margin = ((range_multiplier_constant - 1) / 2) * data_range
# bin_width = (range_multiplier_constant * data_range) / n_bins
# bins = np.arange(start = min_data - margin, stop = max_data + margin + (bin_width / 2), step = bin_width)
# bin_centers = [(bins[i] + bins[i + 1]) / 2 for i in range(len(bins) - 1)] # get centerpoints of each bin
# # get histograms and convert to fraction
# data = {
# realness_names[0]: np.histogram(a = dataset_real_facet[mmt_statistic], bins = bins)[0], # real
# realness_names[1]: np.histogram(a = dataset_facet[mmt_statistic], bins = bins)[0], # generated
# }
# data = {realness_name: data_values / sum(data_values) for realness_name, data_values in data.items()} # normalize data such that it's like every facet has the same number of songs
# plot
alpha = 0.5
axes[mmt_statistic].hist(dataset_real_facet[mmt_statistic], label = realness_names[0], density = True, alpha = alpha)
axes[mmt_statistic].hist(dataset_facet[mmt_statistic], label = realness_names[1], density = True, alpha = alpha)
axes[mmt_statistic].set_xlabel(mmt_statistic.replace("_", " ").title())
axes[mmt_statistic].grid()
if mmt_statistic == MMT_STATISTIC_COLUMNS[0]: # add y label if necessary
axes[mmt_statistic].set_ylabel("Density")
# plot legend
handles, labels = axes[MMT_STATISTIC_COLUMNS[0]].get_legend_handles_labels()
by_label = dict(zip(labels, handles))
axes["legend"].legend(handles = by_label.values(), labels = list(map(make_facet_name_fancy, by_label.keys())),
loc = "center", fontsize = legend_fontsize, alignment = "center", ncol = len(realness_names))
axes["legend"].axis("off")
# save image
output_filepath_plot = f"{output_filepath_prefix}.lines.{facet}.pdf"
fig.savefig(output_filepath_plot, dpi = 200, transparent = True, bbox_inches = "tight")
logging.info(f"Saved figure to {output_filepath_plot}.")
# plot plots
for facet in FACETS:
plot_mmt_statistic_faceted(facet = facet)
##################################################
# TRAIN LOSS PLOT
##################################################
# helper function to plot loss plot
def plot_loss(partition: str = RELEVANT_PARTITIONS[-1]) -> None:
"""
Plot the loss curves (different dataset facets) for a given partition.
"""
# create plot
fig, axes = plt.subplot_mosaic(mosaic = [["loss"]], constrained_layout = True, figsize = (4, 4))
fig.suptitle("Loss", fontweight = "bold")
# loop through facets
step_by = 1000 # step axis tick labels will be in units of step_by
for facet in FACETS:
# get data
data = pd.read_csv(filepath_or_buffer = f"{args.input_dir}/{facet}/{model}/loss.csv", sep = ",", header = 0, index_col = False)
data = data[data["partition"] == partition] # filter to correct partition
# plot data
axes["loss"].plot(data["step"] / step_by, data["loss"], label = facet)
# add axis titles and such
axes["loss"].set_xlabel(f"Step (in {step_by:,}s)")
axes["loss"].set_ylabel("Loss")
axes["loss"].grid()
# plot legend
handles, labels = axes["loss"].get_legend_handles_labels()
by_label = dict(zip(labels, handles))
axes["loss"].legend(handles = by_label.values(), labels = list(map(make_facet_name_fancy, by_label.keys())),
alignment = "center", ncol = 1, title = legend_title)
# save image
output_filepath_plot = f"{output_dir}/loss.{model}.{partition}.pdf"
fig.savefig(output_filepath_plot, dpi = 200, transparent = True, bbox_inches = "tight")
logging.info(f"Saved figure to {output_filepath_plot}.")
# plot plots
for partition in RELEVANT_PARTITIONS:
plot_loss(partition = partition)
##################################################
##################################################
|