Spaces:
Sleeping
Sleeping
remove dreprecation warning
Browse files- src/streamlit_app.py +2 -0
src/streamlit_app.py
CHANGED
|
@@ -10,6 +10,8 @@ import streamlit.components.v1 as components
|
|
| 10 |
import shap
|
| 11 |
import matplotlib.pyplot as plt
|
| 12 |
from huggingface_hub import HfFileSystem
|
|
|
|
|
|
|
| 13 |
|
| 14 |
fs = HfFileSystem()
|
| 15 |
|
|
|
|
| 10 |
import shap
|
| 11 |
import matplotlib.pyplot as plt
|
| 12 |
from huggingface_hub import HfFileSystem
|
| 13 |
+
import warnings
|
| 14 |
+
warnings.simplefilter("ignore", category=DeprecationWarning)
|
| 15 |
|
| 16 |
fs = HfFileSystem()
|
| 17 |
|