realitisoft's picture
Upload folder using huggingface_hub
c7e8396 verified
raw
history blame contribute delete
217 Bytes
def aix_platform(osname, version, release):
try:
import _aix_support
return _aix_support.aix_platform()
except ImportError:
pass
return "{}-{}.{}".format(osname, version, release)