hipsternet icon indicating copy to clipboard operation
hipsternet copied to clipboard

All the hipster things in Neural Net in a single repo

Results 6 hipsternet issues
Sort by recently updated
recently updated
newest added

Hello, I am just trying to implement the contractive autoencoder but everytime I try to run it shows me this error: Epoch 1/3 --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last)...

I have tried the the codes in tf-gpu. But it doesnt seems to work ! Does it not support GPU computation ?

Hello, I am trying to follow [your im2col code](https://github.com/wiseodd/hipsternet/blob/master/hipsternet/im2col.py). My intention is to do the **forward pass** of an RGB image without using any framework API. Right now I am...

from hipsternet/hipsternet/loss.py [line 112](https://github.com/wiseodd/hipsternet/blob/563de653827c460c9c1c7722ae7eecc67fe2f8a4/hipsternet/loss.py#L112) ``` def l1_regression(model, y_pred, y_train, lam=1e-3): m = y_pred.shape[0] data_loss = np.sum(np.abs(y_train - y_pred)) / m reg_loss = regularization(model, reg_type='l2', lam=lam) #

The python vesion is forced via conda in the environment.yaml. On a clean data folder > python run_cnn.py ff will fail to download mnist data.

I think you have error in _pool_backward function at this place: `dX = dpool_fun(dX_col, dout_col, pool_cache)` You set dX which is not used later. **UPD**: IT actually not critical since...