Skip to content

Releases: ahmedfgad/NumPyCNNAndroid

NumPyCNNAndroidv0.2-Threading

Choose a tag to compare

@ahmedfgad ahmedfgad released this 04 Jun 15:13
61b926b

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

Choose a tag to compare

@ahmedfgad ahmedfgad released this 31 May 15:31

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.