We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e441292 commit ca2baa7Copy full SHA for ca2baa7
machine_learning_hep/utils/dl_train.py
@@ -7,7 +7,11 @@
7
from pathlib import PurePosixPath
8
9
import requests # pylint: disable=import-error
10
-from alienpy import alien, xrd_core
+
11
+try:
12
+ from alienpy import alien, xrd_core
13
+except ImportError:
14
+ print("Could not import alien, install with pip install alienpy")
15
16
17
def get_train_spec(train_id: int):
0 commit comments