def make_clickable_model(model_name): link = f"https://huggingface.co/{model_name}" return f'{model_name}' def round_numbers(x): if type(x) is str: x = x else: x = round(x, 2) return x