DeepLearning icon indicating copy to clipboard operation
DeepLearning copied to clipboard

Deep Learning (Python, C, C++, Java, Scala, Go)

Results 34 DeepLearning issues
Sort by recently updated
recently updated
newest added

I want to create an Android application using your library, how could I do this? Would you give me some help? Thank you.

`self.W += lr * ((numpy.dot(self.input.T, ph_sample) - numpy.dot(nv_samples.T, nh_means)))` I think this code should be `self.W += lr * ((numpy.dot(self.input.T, ph_sample) - numpy.dot(nv_samples.T, nh_means)) / len(self.input))`

I'm using the Java version of the code. Why the current functionality of the `finetune` function is used for finetuning of the network? The `finetune` function does not update the...

DBN::DBN(int size, int n_i, int *hls, int n_o, int n_l) { // construct rbm_layer // DBN-RBM deconstructer bug fixed rbm_layers[i] = new RBM(N, input_size, hidden_layer_sizes[i],\ NULL, NULL, NULL); //rbm_layers[i] =...