Move clustering end-to-end test into separate file - #280
Conversation
|
@akarmi Please review. |
|
@arovir01 : FYI that we've been placing such scoped end-to-end tests under quantize_integration_test.py and prune_integration_test.py. We also have quantize_functional_test.py for the larger ones (we have it just for MNIST and testing conversion to TFLite also). |
|
Thanks for the observation, Alan. I will rename the file and the class for consistency with Pruning and Quantization. |
48bbb19 to
247d534
Compare
* Moved testValuesRemainClusteredAfterTraining() from cluster_wrapper_test.py to cluster_integration_test.py * Updated BUILD with new cluster_integration_test py_test target
247d534 to
de3555f
Compare
|
Thanks, looks good to me. @alanchiao, please merge this.
@alanchiao, I checked quantize_functional_test.py and it looks to me as it could be a good idea to add such a test for clustering as well. We already have an MNIST example so that it should be fairly straightforward to convert it to a test. We would still keep a standalone example as well. |
This PR addresses the proposal raised in this comment and moves
testValuesRemainClusteredAfterTraining()fromcluster_wrapper_test.pyinto a separate file namedcluster_integration_test.py.