Spaces:
Runtime error
Runtime error
File size: 759 Bytes
510ee71 |
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 |
import platform
from typing import List
def show_system_info():
try:
print(f"Running on {platform.system()} platform")
print(f"OS: {platform.platform()}")
print(f"Processor: {platform.processor()}")
except Exception as ex:
print(f"Error occurred while getting system information {ex}")
def get_models_from_text_file(file_path: str) -> List:
models = []
with open(file_path, "r") as file:
lines = file.readlines()
for repo_id in lines:
if repo_id.strip() != "":
models.append(repo_id.strip())
return models
def get_image_file_extension(image_format: str) -> str:
if image_format == "JPEG":
return ".jpg"
elif image_format == "PNG":
return ".png"
|