curtis.abcd

Results 45 comments of curtis.abcd

@cvasfi Yes, when you load weights, ```extract_dense_weights```part will extract Lookup-convolution weights and use it to generate indices and coefficients as the paper. I will train alexnet and resnet within few...

@stone226 I will clean some codes and update the documents. It is a little bit tricky, You should check https://github.com/ildoonet/tf-lcnn/blob/master/inference.py

Did you check the 'density' like here? -- https://github.com/ildoonet/tf-lcnn/blob/master/inference.py#L119 if density is zero, it means all elements are 'ZERO' so sparse matrix have nothing to compute. It should be really...

Well.. 'tf_op' is not recommended. tf-op was implemented just for test purposes and It is not suitable for real usage. (despite this fact, I will look into that...) You need...

1. As I remember, on MNIST it will take few hours, but much more on Imagenet. (few days?) 2. Training should be run on GPU if you want it to...