INTRODUCTION_MD = """

🐢Giskard Evaluator

Welcome to Giskard Evaluator Space! Get your report immediately by simply input your model id and dataset id below. Follow our leads and improve your model. """ CONFIRM_MAPPING_DETAILS_MD = """

Confirm Pre-processing Details

Please confirm the pre-processing details below. Align the column names of your model in the dropdown menu to your dataset's. If you are not sure, please double check your model and dataset. """ CONFIRM_MAPPING_DETAILS_FAIL_MD = """

Confirm Pre-processing Details

Sorry, we cannot align the input/output of your dataset with the model. Pleaser double check your model and dataset. """ CONFIRM_MAPPING_DETAILS_FAIL_RAW = """ Sorry, we cannot auto-align the input/output of your dataset with the model. """ CHECK_CONFIG_OR_SPLIT_RAW = """ Please check your dataset config or split. """ CHECK_LOG_SECTION_RAW = """ Your have successfully submitted a Giskard evaluation. Further details are available in the Logs tab. You can find your report will be posted to your model's community discussion. """ PREDICTION_SAMPLE_MD = """

Model Prediction Sample

Here is a sample prediction from your model based on your dataset. """ MAPPING_STYLED_ERROR_WARNING = """

⚠️ We cannot auto-align the labels/features of your dataset and model. Please double check the info below before your submission.

""" UNMATCHED_MODEL_DATASET_STYLED_ERROR = """

❌ Your model and dataset have different numbers of labels. Please double check your model and dataset.

""" NOT_TEXT_CLASSIFICATION_MODEL_RAW = """ Your model does not fall under the category of text classification. This page is specifically designated for the evaluation of text classification models. """ USE_INFERENCE_API_TIP = """ We recommend to use Hugging Face Inference API for the evaluation, which requires your HF token.
Otherwise, an HF pipeline will be created and run in this Space. It takes more time to get the result.
Do not worry, your HF token is only used in this Space for your evaluation. """ HF_TOKEN_INVALID_STYLED= """

Your Hugging Face token is invalid. Please double check your token.

""" def get_dataset_fetch_error_raw(error): return f"""Sorry you cannot use this dataset because {error} Contact HF team to support this dataset.""" def get_styled_input(input): return f"""

Your model and dataset have been validated!
Sample input: {input}

"""