Add missing exception

This commit is contained in:
oobabooga 2023-10-20 23:53:24 -07:00
parent 3345da2ea4
commit fbac6d21ca

View File

@ -1,4 +1,5 @@
import os
import traceback
from pathlib import Path
from typing import Any, Dict, Optional, Union
@ -21,6 +22,9 @@ except ModuleNotFoundError:
'https://github.com/Dao-AILab/flash-attention#installation-and-features'
)
pass
except Exception:
logger.warning('Failed to load flash-attention due to the following error:\n')
traceback.print_exc()
class Exllamav2HF(PreTrainedModel):