Releases: ahmedfgad/NumPyCNNAndroid
Releases · ahmedfgad/NumPyCNNAndroid
NumPyCNNAndroidv0.2-Threading
Using a new thread to perform the calculations of the CNN layers rather than using the main thread. This prevents time-consuming operations from freezing the application GUI.
threading.Thread(target=self.run_cnn_thread).start()
NumPyCNNAndroidv0.1
First version of NumPyCNNAndroid.
Using NumPyCNNAndroid v 0.1, you can build a CNN based containing 9 layers (conv-relu-pool) and visualize the output of each layer.