ecilay
ecilay
I implemented a version in pytorch, with the same architecture illustrated in your paper and code, without orthogonal regularization and MDC though. However, my generated faces are 300k iteration are...
In face.png, there are 4 rows...Could you point out the data source of each of them? thanks!
https://github.com/pytorch/TensorRT/blob/5f66adefcea1302e91aa2b3b9e3120636d7027d8/py/torch_tensorrt/dynamo/conversion/converter_utils.py#L273 In this line, if the value is a np.array int, eg, a = np.array(50), then a.shape would be empty, and the `ctx.net.add_constant` function would throw Type error: incompatible function...
## Description I tried to convert a model based on dalle2 clip's text encoder model, I first convert to onnx, and then to trt. I am trying with only single...
I have below code, which concats the input tensor before conv layer, this is the original corresponding Pytorch code: `x = torch.nn.functional.pad(x, pad, mode="constant", value=0)`. In AIT, assume the input...
So say if I have two AIT convered models, `model0` on `cuda0` and `model1` on `cuda1`. Even if I used `cudaSetDevice` to load the models properly on each cuda device,...
In model.py, both in function `build_model(self)` and `build_generator(self, maxlen)`, there is a line `state = tf.zeros([self.batch_size, self.lstm.state_size])`. However, this line cannot run (I am running on tf 0.12). Since self.lstm.state_size...