deep-learning tag

54 questions


1 answers
72 views
0
Cifar 10 Image Recognition by CNN3 Using Keras

I'm a beginner at Keras.In order to understand CNN, I am trying to create a model in Keras and output the recognition accuracy of the model based on cifar10 data.I am having trouble knowing the cause ...

1 years ago

1 answers
83 views
0
I want to improve the loss rate and acc rate of the image discrimination AI model.

We are developing AI to distinguish between rabbits and turtles.However, for some reason, the learning is not going well and the values of loss and acc (discriminatory success rate) are not getting be...


1 answers
84 views
0
Pooling layer output for cifar10_quick_train_test is not an integer

Caffe cifar10_quick_train_test has the output of the pooling layerOH=(H-FH)/S+1(32-3)/2 + 129/2 + 1The calculations are as follows:I don't think the number will be divisible, but what kind of process ...


1 answers
70 views
0
I would like to learn from CSV using a Chainer and determine whether CSV for input is valid or invalid by 0 or 1.

Nice to meet you.This is my first time studying deep learning.Deep learning itself is a field I've never touched before, and I don't understand it at all.Assuming a certain EC site, I would like to le...


1 answers
67 views
0
Is color learning done in deep learning?

In deep learning, if an image is entered with RGB values, the feature extraction related to color information will only be performed in the first layer.However, color images can be generated from blac...

1 years ago

2 answers
100 views
0
Understanding make when using darknet YOLOv3 GPU

The environment is Ubuntu 16.04CUDA 9.1Opencv3.3.0 I tried to use YOLOv3 using GPU, but I got an error in make.What I did below git clone https://github.com/pjreddie/darknetcd darknetChange to vim Mak...

1 years ago

1 answers
67 views
0
Understanding How Python Implements the Batch Affine Layer (Error Reverse Propagation Method)

As I had some questions regarding the implementation of Python's batch Affine layer, I have a question (reference book: Deep Learning from scratch, pp. 150-152).Bias on the following Batch Affine Laye...

1 years ago

1 answers
130 views
0
Pythorch designed Seq2seq, but only the same words are printed

I tried to proofread the text using Seq2seq at Pythorch, but Decoder prints only the same word.This is main.py.Doing this will give you training and more.#main.pyimport copyimport torchimport torch.nn...


1 answers
67 views
0
in deep learning, a method of making learning progress even when layers are deep

Currently, we use a model that combines CNN and RNN to categorize videos.Since the model is underfitting, I would like to increase the complexity of the model.However, CNN currently has about four lay...


1 answers
86 views
0
TypeError: Unsupported type error when creating autoencoder in Chainer

I'm trying to make a self-encoder with Python using a Chainer.I wrote and executed the following code:class Autoencoder (Chain): def__init__(self): super().__init__() with self.init_scope(): self....

« - 3 - »

© 2024 OneMinuteCode. All rights reserved.