Hongtao Yang
Hongtao Yang
I noticed that you only restore trainable variables in `get_embd.py`, I guess that is an typo and is not intended? ``` with tf.Session(config=tf_config) as sess: tf.global_variables_initializer().run() print('loading...') saver = tf.train.Saver(var_list=tf.trainable_variables())...
Hi Wei, Thanks for you awesome work, its really nice to see someone start coding in TF2.0! I have one question about the last fully connected layer in arcface, which...
In [this line](https://github.com/karpathy/nanoGPT/blob/master/model.py#L315) of the `configure_optimizers` method, the list of parameters are sorted. Just wondering does the order of params in a group matter?