Lain

Results 6 issues of Lain

Hi. I tried to implement SKFF with tf 1.15: ```python def SKFF(self, inputs:list, reduction=8, name='SKFF'): with tf.variable_scope(name): ch_n=inputs[0].shape[3] num=len(inputs) d=max(ch_n//reduction, 4) inputs=tf.stack(inputs, 0) fea=tf.reduce_sum(inputs, 0) fea=tf.reduce_mean(fea, [1, 2], keep_dims=True) fea=self.conv_layer(fea,...

Hi. Thanks for the codes and the detailed instruction. I implemented sparse convolution into my encoder: ```python with tf.variable_scope('featureEncoder'): auxiShape = (self.inputShape[0], self.inputShape[1], self.inputShape[2], 7) featureShape = (self.inputShape[0], self.inputShape[1], self.inputShape[2],...

Hi Benedit. I know the path tracing algorithm demands the ωo generated randomly, I want to customize the ωo of the **first** bounce of each ray though. I've tried to...

Hi. Thanks for this project. I want to amplify the dataset, separating the ground truth into direct lighting, indirect lighting, and shadows. Can you release the rendering scenes or send...

发现无论是设置成Alt_L和Alt_R,还是Alt+grave、Alt+Space这种组合键,小狼毫都无法响应。

* system: Ubuntu 16.04 * python: 3.6.13 * tensorflow: 1.15.0 * TensorRT: 5.0.2.6 * GPU: RTX2080TI At first, I installed TensorRT7 but it gave me an error when looking for...