Evan E. Huang

Results 4 issues of Evan E. Huang

Regarding to my previous issue #19 , I find it is a bug in libtorch 1.0.1 and the bug disappears when using libtorch 1.2.0 in my little demo. Do you...

When using sftp or ssh, we can specify the key file path using ``-i`` option like ``` ssh example.com -i ~/.ssh/example.key ``` It seems that there is no ``-i`` option...

**Code to reproduce the issue** ```python import tensorflow as tf import tensorflow_recommenders as tfra import tensorflow_recommenders_addons.dynamic_embedding as de def build_model(): embedding = de.keras.layers.Embedding( embedding_size=8, init_capacity=1000, restrict_policy=de.FrequencyRestrictPolicy, name='UserDynamicEmbeddingLayer', ) return tf.keras.Sequential([...

When trying to complie the TFTA-enabled serving binary, I following the instructions in README, I use `tensorflow/serving.git` branch `r2.16` according to the compatibility matrix: ``` ## If enable GPU OPs...