wenwei202 / iss-rnns

Sparse Recurrent Neural Networks -- Pruning Connections and Hidden Sizes (TensorFlow)
Apache License 2.0
73 stars 21 forks source link

what's the number of ISS #2

Closed zuowang closed 6 years ago

zuowang commented 6 years ago

@wenwei202

When I evaluated the model, the output of below line of code is 1098 for cell0 and 969 for cell1. ptb/ptb_word_lm.py:204

print(sum(match_map==6))

Does that means the number of ISS is (1500 - 1098) and (1500 - 969)?

Thanks a lot!

wenwei202 commented 6 years ago

Yes, correct. The plotted value is the number of removed components in ISS.

zuowang commented 6 years ago

Thanks!