.git-blame-ignore-revs
.gitignore
.readthedocs.yml
CODE_OF_CONDUCT.md
LICENSE.rst
README.rst
environment.yml
justfile
pyproject.toml
.github/pull_request_template.md
.github/workflows/publish_release.yml
.github/workflows/tests.yml
docs/Makefile
docs/conf.py
docs/index.rst
docs/installation.rst
docs/notebooks.rst
docs/quickstart.rst
docs/_static/.gitignore
docs/_static/omlt_logo.png
docs/api_doc/omlt.block.rst
docs/api_doc/omlt.gbt.rst
docs/api_doc/omlt.io.rst
docs/api_doc/omlt.linear_tree.rst
docs/api_doc/omlt.neuralnet.layer.rst
docs/api_doc/omlt.neuralnet.layers_activations.rst
docs/api_doc/omlt.neuralnet.network_definition.rst
docs/api_doc/omlt.neuralnet.nn_formulation.rst
docs/api_doc/omlt.neuralnet.rst
docs/api_doc/omlt.rst
docs/api_doc/omlt.scaling.rst
docs/notebooks/data/build_sin_quadratic_csv.py
docs/notebooks/data/diabetes.csv
docs/notebooks/data/reformer.csv
docs/notebooks/data/sin_quadratic.csv
docs/notebooks/images/bo-with-trees.png
docs/notebooks/images/dense-layer-0.png
docs/notebooks/images/dense-layer-1.png
docs/notebooks/images/input-layer.png
docs/notebooks/images/network-structure-0.png
docs/notebooks/images/network-structure-1.png
docs/notebooks/images/reformer.png
docs/notebooks/images/simple-neural-network.png
docs/notebooks/images/torch-neural-network.png
docs/notebooks/neuralnet/auto-thermal-reformer-relu.ipynb
docs/notebooks/neuralnet/auto-thermal-reformer.ipynb
docs/notebooks/neuralnet/build_network.ipynb
docs/notebooks/neuralnet/graph_neural_network_formulation.ipynb
docs/notebooks/neuralnet/import_network.ipynb
docs/notebooks/neuralnet/index_handling.ipynb
docs/notebooks/neuralnet/mnist_example_convolutional.ipynb
docs/notebooks/neuralnet/mnist_example_dense.ipynb
docs/notebooks/neuralnet/neural_network_formulations.ipynb
docs/notebooks/trees/bo_with_trees.ipynb
docs/notebooks/trees/linear_tree_formulations.ipynb
src/omlt/__init__.py
src/omlt/_version.py
src/omlt/block.py
src/omlt/dependencies.py
src/omlt/formulation.py
src/omlt/py.typed
src/omlt/scaling.py
src/omlt.egg-info/PKG-INFO
src/omlt.egg-info/SOURCES.txt
src/omlt.egg-info/dependency_links.txt
src/omlt.egg-info/requires.txt
src/omlt.egg-info/top_level.txt
src/omlt/gbt/__init__.py
src/omlt/gbt/gbt_formulation.py
src/omlt/gbt/model.py
src/omlt/io/__init__.py
src/omlt/io/input_bounds.py
src/omlt/io/onnx.py
src/omlt/io/onnx_parser.py
src/omlt/io/keras/__init__.py
src/omlt/io/keras/keras_reader.py
src/omlt/io/torch_geometric/__init__.py
src/omlt/io/torch_geometric/build_gnn_formulation.py
src/omlt/io/torch_geometric/torch_geometric_reader.py
src/omlt/linear_tree/__init__.py
src/omlt/linear_tree/lt_definition.py
src/omlt/linear_tree/lt_formulation.py
src/omlt/neuralnet/__init__.py
src/omlt/neuralnet/layer.py
src/omlt/neuralnet/network_definition.py
src/omlt/neuralnet/nn_formulation.py
src/omlt/neuralnet/activations/__init__.py
src/omlt/neuralnet/activations/linear.py
src/omlt/neuralnet/activations/relu.py
src/omlt/neuralnet/activations/smooth.py
src/omlt/neuralnet/layers/__init__.py
src/omlt/neuralnet/layers/full_space.py
src/omlt/neuralnet/layers/partition_based.py
src/omlt/neuralnet/layers/reduced_space.py
tests/conftest.py
tests/test_block.py
tests/test_formulation.py
tests/test_scaling.py
tests/gbt/categorical_model.onnx
tests/gbt/continuous_model.onnx
tests/gbt/dimension_subset.onnx
tests/gbt/test_gbt_formulation.py
tests/io/test_input_bounds.py
tests/io/test_keras_reader.py
tests/io/test_onnx_parser.py
tests/io/test_torch_geometric.py
tests/linear_tree/test_lt_formulation.py
tests/models/big.keras
tests/models/convx1_gemmx1.onnx
tests/models/gbt_model.onnx
tests/models/gemm.onnx
tests/models/gemm_not_transB.onnx
tests/models/gemm_transB.onnx
tests/models/keras_conv_7x7_relu.onnx
tests/models/keras_conv_7x7_relu.onnx.bounds.json
tests/models/keras_linear_131.keras
tests/models/keras_linear_131.onnx
tests/models/keras_linear_131_relu.keras
tests/models/keras_linear_131_relu.onnx
tests/models/keras_linear_131_relu_output_activation.keras
tests/models/keras_linear_131_sigmoid.keras
tests/models/keras_linear_131_sigmoid.onnx
tests/models/keras_linear_131_sigmoid_output_activation.keras
tests/models/keras_linear_131_sigmoid_softplus_output_activation.keras
tests/models/keras_linear_2353.keras
tests/models/maxpool_2d.onnx
tests/neuralnet/test_keras.py
tests/neuralnet/test_layer.py
tests/neuralnet/test_network_definition.py
tests/neuralnet/test_nn_formulation.py
tests/neuralnet/test_onnx.py
tests/neuralnet/test_relu.py
tests/neuralnet/train_keras_models.py
tests/notebooks/test_run_notebooks.py