Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +5 -1
src/streamlit_app.py
CHANGED
|
@@ -2,6 +2,10 @@ import streamlit as st
|
|
| 2 |
import os
|
| 3 |
import tempfile
|
| 4 |
import torch
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
import numpy as np
|
| 6 |
from ase import Atoms
|
| 7 |
from ase.io import read, write
|
|
@@ -590,7 +594,7 @@ MAX_ATOMS_CLOUD_UMA = 500
|
|
| 590 |
|
| 591 |
# Set page configuration
|
| 592 |
st.set_page_config(
|
| 593 |
-
page_title="
|
| 594 |
page_icon="🧪",
|
| 595 |
layout="wide"
|
| 596 |
)
|
|
|
|
| 2 |
import os
|
| 3 |
import tempfile
|
| 4 |
import torch
|
| 5 |
+
# FOR CPU only mode
|
| 6 |
+
# torch._dynamo.config.suppress_errors = True
|
| 7 |
+
# Or disable compilation entirely
|
| 8 |
+
# torch.backends.cudnn.enabled = False
|
| 9 |
import numpy as np
|
| 10 |
from ase import Atoms
|
| 11 |
from ase.io import read, write
|
|
|
|
| 594 |
|
| 595 |
# Set page configuration
|
| 596 |
st.set_page_config(
|
| 597 |
+
page_title="MLIP Playground - Run, Test and Benchmark MLIPs",
|
| 598 |
page_icon="🧪",
|
| 599 |
layout="wide"
|
| 600 |
)
|