xsigus24's picture
Upload folder using huggingface_hub
1d777c4
raw
history blame contribute delete
145 Bytes
import sys
from . import main
rc = 1
try:
main()
rc = 0
except Exception as e:
print('Error: %s' % e, file=sys.stderr)
sys.exit(rc)