Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/constellation.c
Original file line number Diff line number Diff line change
Expand Up @@ -614,18 +614,6 @@ PlotArgs DEFAULT_PLOT_ARGS = {
.z_label = "Train/Learning Rate",
};


Table* dataset_table(Dataset *data, char *env) {
for (int i = 0; i < data->n; i++) {
if (strcmp(data->tables[i].name, env) == 0) {
return &data->tables[i];
}
}
printf("Error: env %s not found\n", env);
exit(1);
return NULL;
}

float safe_log10(float x) {
if (x <= 0) {
return x;
Expand Down
Loading