Skip to content

Releases: ahmedfgad/NumPyCNNAndroid

NumPyCNNAndroidv0.2-Threading

04 Jun 15:13
61b926b
Compare
Choose a tag to compare

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

31 May 15:31
Compare
Choose a tag to compare

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.