Skip to content

Commit ae03ba2

Browse files
committed
updates
1 parent 25effca commit ae03ba2

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ USER jovyan
1212
RUN mamba install -c conda-forge uproot xrootd
1313

1414
RUN pip install --no-cache-dir 'xgboost==3.0.5' 'gdown==5.2.0' 'mplhep==0.4.1' 'jetnet==0.2.5' 'tables==3.10.2' 'torch_geometric' && \
15-
pip install --no-cache-dir --no-index pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.6.0+cu126.html && \
15+
pip install --no-cache-dir --no-index pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.2.1+cu121.html && \
1616
fix-permissions /opt/conda && \
1717
fix-permissions /home/jovyan

notebooks/06_Graph_Data_GNN.ipynb

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,15 @@
1212
"\n",
1313
"Depending on the environment used, you may need to install additional libaries:\n",
1414
"```ipython\n",
15-
"!pip install uproot torch_geometric mplhep\n",
16-
"!pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.6.0+cu126.html \n",
15+
"!pip install xrootd torch_geometric mplhep\n",
16+
"!pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.2.1+cu121.html \n",
1717
"```\n",
1818
"\n",
1919
"Data can also be downloaded locally:\n",
2020
"```ipython\n",
2121
"!wget https://opendata.cern.ch/record/12102/files/assets/cms/datascience/HiggsToBBNtupleProducerTool/HiggsToBBNTuple_HiggsToBB_QCD_RunII_13TeV_MC/train/ntuple_merged_10.root\n",
2222
"!wget https://opendata.cern.ch/record/12102/files/assets/cms/datascience/HiggsToBBNtupleProducerTool/HiggsToBBNTuple_HiggsToBB_QCD_RunII_13TeV_MC/test/ntuple_merged_0.root\n",
23-
"```\n",
24-
"\n",
25-
"on DataHub two files have been copied locally to \n",
26-
"```\n",
27-
"/higgs/train/ntuple_merged_10.root\n",
28-
"/higgs/test/ntuple_merged_0.root\n",
29-
"````"
23+
"```"
3024
]
3125
},
3226
{
@@ -93,8 +87,8 @@
9387
"local = False\n",
9488
"\n",
9589
"if local:\n",
96-
" file_names = [\"/higgs/train/ntuple_merged_10.root\"]\n",
97-
" file_names_test = [\"/higgs/test/ntuple_merged_0.root\"]\n",
90+
" file_names = [\"ntuple_merged_10.root\"]\n",
91+
" file_names_test = [\"ntuple_merged_0.root\"]\n",
9892
"else:\n",
9993
" file_names = [\n",
10094
" \"root://eospublic.cern.ch//eos/opendata/cms/datascience/HiggsToBBNtupleProducerTool/HiggsToBBNTuple_HiggsToBB_QCD_RunII_13TeV_MC/train/ntuple_merged_10.root\"\n",

0 commit comments

Comments
 (0)