Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged neural

0 votes
538 views
1 answer
    I am experimenting some code on Jupyter and keep getting stuck here. Things work actually fine if I remove ... (minibatch_cost) my_sess.close() See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
336 views
1 answer
    I have written python code to programmatically generate a convolutional neural network (CNN) for training and validation ... me to a reference. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
463 views
1 answer
    I created a "Python" layer "myLayer" in caffe, and use it in the net train_val.prototxt I insert the ... ll udpdate if anything pops there. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
652 views
1 answer
    I have a code as follows. What I want to do is to share the same weights in two dense layers. The ... , outputs=predictions) Thanks in advance. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
587 views
1 answer
    I am using neuralnet package for training a classifier. The training data looks like this: > head(train_data) mvar_12 ... how can I fix it? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
732 views
1 answer
    I want to convert a pre-trained CNN (like VGG-16) to a fully convolutional network in Pytorch. How can I do so? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
688 views
1 answer
    According to this paper, the output shape is N + H - 1, N is input height or width, H is kernel ... How does deconvolution works in Tensorflow? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
580 views
1 answer
    I am pretty new to tensorflow. I used to use theano for deep learning development. I notice a difference between ... in some magic way? Thanks. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
659 views
1 answer
    By using pyTorch there is two ways to dropout torch.nn.Dropout and torch.nn.functional.Dropout. I struggle to ... when I switched them around. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
517 views
1 answer
    The sigmoid function is defined as I found that using the C built-in function exp() to calculate the value of f ... calculate the value of f(x)? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
577 views
1 answer
    In MNIST LSTM examples, I don't understand what "hidden layer" means. Is it the imaginary-layer formed when you ... = 128 in most cases ? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
519 views
1 answer
    I have a dataset of images that have multiple labels; There are 100 classes in the dataset, and each image has ... process of setting up Caffe? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
471 views
1 answer
    I'm trying to use SparseTensor to represent weight variables in a fully-connected layer. However, it seems that ... as training steps go. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
532 views
1 answer
    I am trying to build a neural network model with one hidden layer (1024 nodes). The hidden layer is ... (test_prediction.eval(), test_labels)) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
558 views
1 answer
    Can someone explain how can I initialize hidden state of LSTM in tensorflow? I am trying to build LSTM ... semi-supervised-sequence-learning.pdf See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
421 views
1 answer
    After parsing many links regarding building Caffe layers in Python i still have difficulties in understanding few concepts ... for help here. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
368 views
1 answer
    I'm going through the neural transfer pytorch tutorial and am confused about the use of retain_variable(deprecated, now ... why do we need it? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
358 views
1 answer
    I thought we might be able to compile a Caffeinated description of some methods of performing multiple category ... m trying to ask. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
350 views
1 answer
    A very simple example in tensorflow: min (x + 1)^2 where x is a scalar. The code is: import tensorflow as ... a bug? Can anyone explain it? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
517 views
1 answer
    Is there a function call or another way to count the total number of parameters in a tensorflow model? By ... variables in a tensorflow session. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
411 views
1 answer
    Currently I stumbled across variational autoencoders and tried to make them work on MNIST using keras. I found a ... give me more insight? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
444 views
1 answer
    I want to scale the loss value of each image based on how close/far is the "current prediction" to the " ... someone can give me some pointers. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
460 views
1 answer
    I am reading through the documentation of PyTorch and found an example where they write gradients = torch.FloatTensor([ ... very clear on that. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
448 views
1 answer
    I want to find a caffe python data layer example to learn. I know that Fast-RCNN has a python data ... "ImageDataLayer". Thank you very much See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
662 views
1 answer
    Does anyone know if there exists a nice LSTM module for Caffe? I found one from a github account by ... no examples or explanations anymore). See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...