-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProblems.txt
More file actions
33 lines (19 loc) · 832 Bytes
/
Problems.txt
File metadata and controls
33 lines (19 loc) · 832 Bytes
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
29
30
31
32
Learning Rate / batch size issues
Tensorflow poolAllocator for so long:
entropy estimate contains too much tensors
config = tf.ConfigProto()
config.gpu_options.per_process_gpu_memory_fraction = 0.9
LD_PRELOAD=..tcmalloc
use BFCAllocator: run with environment variable TF_CPU_ALLOCATOR_USE_BFC=true
Low GPU usage and high CPU usage:
Copy too much data from gpu to cpu due to py_func in quantization, use stop_gradient trick
Replace subpixel with depth to space
Use input pipeline
Distributed training, in-graph
Hard implementation of GSM entropy rate, instead use GMM
tf.log may cause Nan error
Arithmetic coding algorithm should be applied per channel as entropy estimation does.
Problems related to matlab arithmetic coding code.
Variable shape:
build tensor, op, variables
while_loop