Jonathan Hampton
Jonathan Hampton
Example: ```python class MyMLP(torch.nn.Module): def __init__(self, out_len): super().__init__() self.model = torch.nn.Sequential(torch.nn.Linear(1000,out_len), torch.nn.Sigmoid()) def forward(self, x): return self.model(x) class MyModel(torch.nn.Module): def __init__(self, out_len): super().__init__() self.cnn = torchvision.models.quantization.resnet18() self.mlp = MyMLP(2) def...
Following: https://github.com/Xilinx/Vitis-Tutorials/tree/2020.2/Vitis_Platform_Creation/Introduction/02-Edge-AI-ZCU104#step-by-step-tutorial During step 4, test 2 "Run Vector Addition Application", when running HW-emulation I get the following in the emulation console of the Vitis IDE: ``` Starting QEMU -...
I've been trying to run a distributed setup with Ray Lightning however it seems the worker nodes aren't downloading the data via my data module's prepare_data() function. I have set...