Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NormanTUD committed Dec 18, 2024
1 parent ef4a4ce commit bb149f3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion explain.js
Original file line number Diff line number Diff line change
Expand Up @@ -1861,7 +1861,7 @@ function get_layer_output_shape_as_string (i) {
err(e);
}
} else {
log("Layers not in model");
log(language[lang]["layers_not_in_model"]);
}

}
Expand Down
2 changes: 1 addition & 1 deletion gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -2823,7 +2823,7 @@ async function set_config(index) {
dbg(`[set_config] ${language[lang]["setting_max_number_of_files_per_category_to"]} ${config["max_number_of_files_per_category"]}`);
$("#max_number_of_files_per_category").val(config["max_number_of_files_per_category"]);
} else {
dbg("[set_config] No max_number_of_files_per_category found in config");
dbg(`[set_config] ${language[lang]["no_max_number_of_files_per_category_found_in_config"]}`);
}

if (config["divide_by"]) {
Expand Down
8 changes: 6 additions & 2 deletions translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,9 @@
"no_content" => "No content",
"tensor_shape_does_not_match_model_shape_not_predicting_example" => "tensor shape does not match model shape. Not predicting example text. Input shape/tensor shape",
"value_is_empty" => "Value is empty",
"wrong_input_shape_for_prediction_data_x_model_y" => "Wrong input shape for prediction. Data: [%s], model: [%s]"
"wrong_input_shape_for_prediction_data_x_model_y" => "Wrong input shape for prediction. Data: [%s], model: [%s]",
"no_max_number_of_files_per_category_found_in_config" => "No max_number_of_files_per_category found in config",
"layers_not_in_model" => "Layers not in model"
),

'de' => array(
Expand Down Expand Up @@ -1179,7 +1181,9 @@
"no_content" => "Kein Inhalt",
"tensor_shape_does_not_match_model_shape_not_predicting_example" => "Tensor-Shape passt nicht zum Modell. Beispiel wird nicht predicted. Input-Shape/Tensor-Shape",
"value_is_empty" => "Wert ist leer",
"wrong_input_shape_for_prediction_data_x_model_y" => "Falsche Input-Shape für Prediction. Daten: [%s], Modell: [%s]"
"wrong_input_shape_for_prediction_data_x_model_y" => "Falsche Input-Shape für Prediction. Daten: [%s], Modell: [%s]",
"no_max_number_of_files_per_category_found_in_config" => "Der Wert max_number_of_files_per_category wurde nicht in der Config gefunden",
"layers_not_in_model" => "Layers nicht im Modell"
)
);

Expand Down

0 comments on commit bb149f3

Please sign in to comment.