MDF
MDF copied to clipboard
This repository contains the source for the MDF specification and Python API
What happens when more that two edges connect to a single input port? This came up in our weekly meeting and we didn't know the answer.
Both missing from https://mdf.readthedocs.io/en/latest/api/Specification.html. That page is generated from https://github.com/ModECI/MDF/blob/main/docs/README.md, which is a markdown export of https://github.com/ModECI/MDF/blob/main/src/modeci_mdf/mdf.py, which has classes Condition and ConditionSet...
Typing
Decide whether parameters will be typed and develop a specification for typing.
Per discussion with the core team, one problem that's repeatedly come up is what to do about discrepancies in output. It's a foregone conclusion that different simulators/environments will produce different...
Would be great to see the MDF/ModECI logo on here: https://onnx.ai/supported-tools.html Perhaps under Frameworks & Converters, or in a new category at the bottom on Interoperability..? Need to make sure...
There are a lot of ONNX warnings that can become kind of a nuisance especially when running larger/longer models: ```python >>> from modeci_mdf.execution_engine import evaluate_onnx_expr >>> p = {'mean': -1.0,...
The current pipeline for PyTorch to MDF conversion utilizes TorchScript compilation of PyTorch models. The TorchScript graph is created with a call to `torch.jit.script`. The TorchScript graph is then traversed...
@davidt0x The [pytorch_ddm.py](https://github.com/ModECI/MDF/blob/development/examples/PyTorch/pytorch_ddm.py) model is failing for some reason, but only on ubuntu (it hasn't been changed recently though). See e.g. https://github.com/ModECI/MDF/actions/runs/4295791247/jobs/7486678614 FAILED tests/test_examples.py::test_example[additional_args0-examples/PyTorch/pytorch_ddm.py] - AttributeError: 'torch._C.BoolType' object has no...