Skip to main content
Best practices
0 votes
14 replies
154 views

I am currently working on a project to create a working Ai Neural Network in C++, I have watched and read many articles on Layers concept but I still don't know from where to start with the layers ...
Wasthisit's user avatar
Advice
1 vote
6 replies
145 views

I’m an undergraduate CS student working on a final project due in about a month, and I’m trying to design and implement a C++-based AI Neural Network Simulator integrated into a small game environment....
Wasthisit's user avatar
Best practices
0 votes
1 replies
87 views

I have a website which shows different products about machines and its different parts. There are 10000 of product pages, and want to build a functionality which shows similar product pages and ...
Learner's user avatar
  • 165
Advice
0 votes
2 replies
117 views

I was watching this tutorial on weight initialization in neural network, and im not able to understand this statement: In case of Tanh, Sigmoid activation, If we initialize weights with large values (...
Arun Negi's user avatar
2 votes
1 answer
69 views

I tried making a logistic regression model using nn.Module class LogisticRegressionModel(nn.Module): def __init__(self, input_dim= None) -> None: super().__init__() if input_dim ...
Bakr MARHFOUL's user avatar
1 vote
0 answers
72 views

I am training a small PyTorch model and want to use nn.BatchNorm1d. When the batch size is 1 and the model is in training mode, I get the error below; ValueError: Expected more than 1 value per ...
Linda's user avatar
  • 37
1 vote
1 answer
79 views

I am currently working on a project where I have to use GluonTS (the DeepAREstimator and DLinearEstimator). At the beginning it worked well. But now, even when I use the example code from the GluonTS ...
peter mafai's user avatar
0 votes
0 answers
82 views

cv::Ptr<cv::ml::ANN_MLP> mlp = cv::ml::ANN_MLP::create(); int inputlayerSize = imagesData[0].total(); //28*28=784 int hiddenLayerSize = 100; int outputLayerSize = 10; cv::Mat ...
jacqueline12's user avatar
5 votes
1 answer
108 views

The main function is apply_noise which applies the noise using the laplacian distribution, the scale of the distribution is b which is calculated with an epsilon value and the sensitivity value that ...
Raphael Matos's user avatar
3 votes
1 answer
91 views

I am running inference on a trained PyTorch model using the same input tensor, fixed random seeds, and evaluation mode enabled. import torch torch.manual_seed(42) torch.cuda.manual_seed_all(42) model....
Colin Leede's user avatar
2 votes
0 answers
57 views

I’m encountering an issue when combining tsCV with nnetar (with h = 2 and additional input variables). The forecast errors for both horizons (h = 1 and h = 2) terminate two observations before the end ...
Sedigheh Misha's user avatar
Advice
1 vote
4 replies
112 views

I want to implement in python some algorithms from a paper that allow for a pre-trained neural network to be modified (adding or removing neurons or layers) conserving (theoretically) the outputs of ...
Rubén Sales Castellar's user avatar
Advice
0 votes
0 replies
50 views

I want to find a convolutional network with a large kernel (larger than 5x5 or 7x7). I want to perform kernel analysis, and to do this, I need to convert the model to the onnx format. I found ...
xzxolop's user avatar
  • 65
1 vote
1 answer
143 views

I have input shape to a convolution (50, 1, 7617, 10). Here, 7617 is word vectors as rows, and 10 is the number of words in columns. I want to convolve column-wise and obtain (2631, 1, 7617, 1), 1 ...
cuneyttyler's user avatar
  • 1,424
1 vote
0 answers
607 views

I am trying to install the GroundingDino as instructed in the README file of their official GitHub repo, but I am facing the error below: Obtaining file:///home/kgupta/workspace/Synthetic_Data_gen/...
Mahfuzur Mahim Rahman's user avatar

15 30 50 per page
1
2 3 4 5
1331