Guest User

Untitled

a guest
Mar 23rd, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. train_input_reader: {
  2. tf_record_input_reader {
  3. input_path: "data/data_train.record"
  4. }
  5. label_map_path: "data/rdata_train.pbtxt"
  6. queue_capacity: 2
  7. min_after_dequeue: 1
  8. }
  9.  
  10. train_config: {
  11. batch_size: 1
  12. optimizer {
  13. rms_prop_optimizer: {
  14. learning_rate: {
  15. exponential_decay_learning_rate {
  16. initial_learning_rate: 0.1
  17. decay_steps: 800720
  18. decay_factor: 0.95
  19. }
  20. }
  21. momentum_optimizer_value: 0.9
  22. decay: 0.9
  23. epsilon: 0.000001
  24. }
  25. }
  26. fine_tune_checkpoint: "ssd_mobilenet_v1_coco_2017_11_17/model.ckpt"
  27. from_detection_checkpoint: true
  28. # Note: The below line limits the training process to 200K steps, which we
  29. # empirically found to be sufficient enough to train the pets dataset. This
  30. # effectively bypasses the learning rate schedule (the learning rate will
  31. # never decay). Remove the below line to train indefinitely.
  32. num_steps: 200000
  33. batch_queue_capacity: 5
  34. num_batch_queue_threads: 8
  35. prefetch_queue_capacity: 5
  36. }
  37.  
  38. /home/ubuntu/.conda/envs/tf/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
  39. from ._conv import register_converters as _register_converters
  40. WARNING:tensorflow:From /dev/models/research/object_detection/trainer.py:228: create_global_step (from tensorflow.contrib.framework.python.ops.variables) is deprecated and will be removed in a future version.
  41. Instructions for updating:
  42. Please switch to tf.train.create_global_step
  43. INFO:tensorflow:depth of additional conv before box predictor: 0
  44. INFO:tensorflow:depth of additional conv before box predictor: 0
  45. INFO:tensorflow:depth of additional conv before box predictor: 0
  46. INFO:tensorflow:depth of additional conv before box predictor: 0
  47. INFO:tensorflow:depth of additional conv before box predictor: 0
  48. INFO:tensorflow:depth of additional conv before box predictor: 0
  49. INFO:tensorflow:Summary name /clone_loss is illegal; using clone_loss instead.
  50. WARNING:tensorflow:From /home/ubuntu/.conda/envs/tf/lib/python3.6/site-packages/tensorflow/contrib/slim/python/slim/learning.py:736: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
  51. Instructions for updating:
  52. Please switch to tf.train.MonitoredTrainingSession
  53. 2018-03-22 14:14:27.789420: I tensorflow/core/platform/cpu_feature_guard.cc:140] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
  54. 2018-03-22 14:14:27.925567: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:898] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
  55. 2018-03-22 14:14:27.925895: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1212] Found device 0 with properties:
  56. name: Tesla K80 major: 3 minor: 7 memoryClockRate(GHz): 0.8235
  57. pciBusID: 0000:00:1e.0
  58. totalMemory: 11.17GiB freeMemory: 11.10GiB
  59. 2018-03-22 14:14:27.925920: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1312] Adding visible gpu devices: 0
  60. 2018-03-22 14:14:29.848609: I tensorflow/core/common_runtime/gpu/gpu_device.cc:993] Creating TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 10764 MB memory) -> physical GPU (device: 0, name: Tesla K80, pci bus id: 0000:00:1e.0, compute capability: 3.7)
  61. INFO:tensorflow:Restoring parameters from ckpts/model.ckpt-0
  62. INFO:tensorflow:Running local_init_op.
  63. INFO:tensorflow:Done running local_init_op.
  64. INFO:tensorflow:Starting Session.
  65. INFO:tensorflow:Saving checkpoint to path ckpts/model.ckpt
  66. INFO:tensorflow:Starting Queues.
  67. INFO:tensorflow:global_step/sec: 0
  68. INFO:tensorflow:Recording summary at step 0.
  69. Killed
Add Comment
Please, Sign In to add comment