Michael A. Alcorn

Results 11 issues of Michael A. Alcorn

When the `Renderer` is initialized with `depth` set to `False`, `dm_unit` is never set in `renderView` even though it is always returned.

When I run: ```bash python3 nobg_nodm.py ``` in test mode, I get the following error: ``` loading test set... done. WARNING:tensorflow:From nobg_nodm.py:86 in buildModel.: scalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and...

If I just run: ```bash python3 nobg_nodm.py ``` in the root working directory, I get the follow error: ``` Traceback (most recent call last): File "nobg_nodm.py", line 5, in import...

[This commit](https://github.com/lmb-freiburg/mv3d/commit/3ea3493b32a118878140651d99dd1b509fb5cbdb) did not fix [this issue](https://github.com/lmb-freiburg/mv3d/issues/3) for me. Adding: ```python3 self.writer = None ``` to `__init__` in `mv3d` makes it past this error.

Could you please provide additional details on how to obtain the 911-Calls and Earthquake datasets used in your paper? The CSV found at [the provided webpage](https://www.kaggle.com/mchirico/montcoalert) has 663,522 calls, all...

Thanks for sharing the code for your THP model! Could you also share the code to reproduce the results for your Structured-THP model?

## Bug Description When trying to build Torch-TensorRT on a Jetson following the instructions [here](https://pytorch.org/TensorRT/getting_started/installation.html), I get errors that seem to be related to changes made to `WORSPACE.jp50` in [this...

bug

I think the lesson would benefit from switching to [f-strings](https://realpython.com/python-f-strings/) for `print` statements. E.g., the line [here](https://swcarpentry.github.io/python-novice-inflammation/01-intro/index.html#built-in-python-functions): ```python3 print('weight in pounds:', 2.2 * weight_kg) ``` would become: ```python3 print(f'weight in...

## Bug Description The code below produces the following error: ``` SpecViolationError: Node.meta _to_copy_default is missing val field. ``` The same code works fine with Torch-TensorRT 2.1.0-rc9 and PyTorch 2.1.2....

bug

## Bug Description The code below produces the following error: ``` RuntimeError: The following operation failed in the TorchScript interpreter. Traceback of TorchScript (most recent call last): RuntimeError: [Error thrown...

bug