Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- pyTorch
- raspberry pi
- keras
- Anaconda
- shakeratos
- dataset
- TensorFlow
- dlib
- face_recognition
- ubuntu
- ppc64le
- linux
- Windows 10
- python3
- YouTube 8M
- windows
- error
- gpu memory
- install
- urllib
- download
- python
- colab
- Deep Learning
- CUDA
- 딥러닝
- FIle
- object detection
- colaboratory
- Jupyter notebook
Archives
- Today
- Total
목록미니배치 (1)
Shakerato
How to implement next_batch for mini batch gradient descent in deep learning
Full Code: https://www.kaggle.com/pedrolcn/deep-tensorflow-ccn-cross-validationclass TrainBatcher(object): # Class constructor def __init__(self, examples, labels): self.labels = labels self.examples = examples self.index_in_epoch = 0 self.num_examples = examples.shape[0] # mini-batching method def next_batch(self, batch_size): start = self.index_in_epoch self.index_in_epoch += batch_size # When..
Research
2018. 4. 2. 15:29