Skip to content

Latest commit

 

History

History
69 lines (60 loc) · 2.5 KB

CHANGELOG.md

File metadata and controls

69 lines (60 loc) · 2.5 KB

Changelog

TODO

Currently Working On

2023-01-24 21:00:34

  • Demo to show datasets and Experiments
    • API to serve datasets
    • API to serve experiments
    • fill intermediate states
  • other scripts
    • preprocess
      • copy properties.json and values.json to /data/trance
      • reading h5py is faster than reading raw images for training, but not much, only seconds for each epoch, previous code has bug
      • speed is nearly the same, I believe data reading is not the bottleneck
    • gen_rc
    • move to docker

2023-01-09 17:20:10

  • merge tvr and real tvr to DeepCodebase Framework.
    • dataset
    • evaluation
    • pipeline
    • config
  • test old models.
    • start: 2022-12-16 22:40:11
    • fix bug: add view_idx to inputs
  • dataset size ablation
  • reinforce ablation
    • no better validation accuracy, but train acc keeps increasing, which means overfitting
      • adamw seems to be more stable, lr=0.0005 is better for now
    • try:
      • fix encoder, only tune classifier and decoder
        • better than previous tunning, but still not better than baseline
      • rnn dropout
        • 0.3 is best
      • classifier dropout
        • 0.3 is best
  • test half precision
    • no speed up, weird
  • add transformer based model
  • change primary models from concat to subtract
    • reinforce ablation
    • scaling data ablation

Issues:

  • on node 12, RuntimeError: cuDNN error: CUDNN_STATUS_EXECUTION_FAILED when running python core.py train config/event.ConcatResNet.yaml.
    • move the whole code into DeepCodebase and run in docker.
  • training is slow.
  • obj_acc appears in the view.
    • remove old ViewRecorder and rename MultiViewRecorder to ViewRecorder.