Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bindings/pyroot/pythonizations/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ if(tmva)
ROOT/_pythonization/_tmva/_sofie/_parser/_keras/layers/sigmoid.py
ROOT/_pythonization/_tmva/_sofie/_parser/_keras/layers/softmax.py
ROOT/_pythonization/_tmva/_sofie/_parser/_keras/layers/swish.py
ROOT/_pythonization/_tmva/_sofie/_parser/_keras/layers/tanh.py)
ROOT/_pythonization/_tmva/_sofie/_parser/_keras/layers/tanh.py
ROOT/_pythonization/_tmva/_sofie/_parser/_pytorch/__init__.py
ROOT/_pythonization/_tmva/_sofie/_parser/_pytorch/parser.py)
endif()

set(py_sources
Expand Down
2 changes: 2 additions & 0 deletions bindings/pyroot/pythonizations/python/ROOT/_facade.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,11 @@ def TMVA(self):
from ._pythonization import _tmva # noqa: F401
from ._pythonization._tmva._rtensor import _AsRTensor
from ._pythonization._tmva._sofie._parser._keras.parser import PyKeras
from ._pythonization._tmva._sofie._parser._pytorch.parser import PyTorch
from ._pythonization._tmva._tree_inference import SaveXGBoost

setattr(ns.Experimental.SOFIE, "PyKeras", PyKeras)
setattr(ns.Experimental.SOFIE, "PyTorch", PyTorch)

ns.Experimental.AsRTensor = _AsRTensor
ns.Experimental.SaveXGBoost = SaveXGBoost
Expand Down
Loading
Loading