-
So, I’m having difficulty getting RMSprop and Adam to work. I’ve correctly implemented Momentum as an optimizing algorithm, meaning that, …
- 43 views
- 0 answers
- 0 votes
-
from sklearn.model_selection import train_test_split X_train, X_test, y_train, y_test = train_test_split(df, y) X_train = torch.from_numpy(X_train.to_numpy()).float() X_test = torch.from_numpy(X_test.to_numpy()).float() y_test = torch.squeeze(torch.from_numpy(y_test.to_numpy()).float()) …
- 44 views
- 0 answers
- 0 votes
-
Thank you for your Time! I am trying to construct a Neural Network for regression predicting a discrete value, but …
- 50 views
- 0 answers
- 0 votes
-
I am wondering how I can formate my data, a list of 1000 numeric features, into a shape that my …
- 51 views
- 2 answers
- 0 votes
-
I am building a regression model for a target variable which is heavy tailed. I want to augment data so …
- 39 views
- 0 answers
- 0 votes
-
Python programming: x_train.shape is (60000,28,28,1) How I can convert my data to (60000,28,28) When I type x_train[0] , it can …
- 42 views
- 1 answers
- 0 votes
-
i m new in machine learning and i am create a one small project using CountVectorizer model. i am split …
- 41 views
- 1 answers
- 0 votes
-
I am currently exploring Tensorflow distributed. In a normal case it is very easy to access and manipulate the gradients …
- 39 views
- 0 answers
- 0 votes
-
I had tried to use sklearn RandomForestRegressor as a model. My data input contains 58 data points, and I set …
- 39 views
- 0 answers
- 0 votes