├── .gitignore ├── LICENSE ├── README.md ├── data └── malenov │ ├── indices.npy │ └── labels.npy ├── pytorch-malenov ├── README.md ├── malenov │ ├── __init__.py │ ├── dataset.py │ ├── model.py │ ├── options.py │ └── utils.py ├── notebooks │ ├── Converting Segy to Numpy for the F3.ipynb │ ├── Dataset Split and Inspections.ipynb │ └── Pytorch-MalenoV Results Inspection.ipynb ├── results │ └── malenov │ │ ├── 180913_2001 │ │ ├── args.json │ │ ├── csv │ │ │ ├── run_180913_2001_train-tag-accuracy.csv │ │ │ ├── run_180913_2001_train-tag-loss.csv │ │ │ ├── run_180913_2001_val-tag-accuracy.csv │ │ │ └── run_180913_2001_val-tag-loss.csv │ │ ├── model_epoch_0.pth.tar │ │ ├── model_epoch_1.pth.tar │ │ ├── model_epoch_2.pth.tar │ │ ├── model_epoch_3.pth.tar │ │ ├── model_epoch_4.pth.tar │ │ ├── model_epoch_5.pth.tar │ │ ├── model_epoch_6.pth.tar │ │ ├── model_epoch_7.pth.tar │ │ ├── model_epoch_8.pth.tar │ │ ├── model_epoch_9.pth.tar │ │ ├── model_latest.pth.tar │ │ ├── outputs │ │ │ ├── amplitudes_220.npy │ │ │ ├── amplitudes_300.npy │ │ │ ├── amplitudes_500.npy │ │ │ ├── indices_220.npy │ │ │ ├── indices_300.npy │ │ │ ├── indices_500.npy │ │ │ ├── preds_220.npy │ │ │ ├── preds_300.npy │ │ │ └── preds_500.npy │ │ ├── train │ │ │ └── events.out.tfevents.1536865277.lmosser │ │ └── val │ │ │ └── events.out.tfevents.1536865277.lmosser │ │ └── 180913_2034 │ │ ├── args.json │ │ ├── csv │ │ ├── run_180913_2034_train-tag-accuracy.csv │ │ ├── run_180913_2034_train-tag-loss.csv │ │ ├── run_180913_2034_val-tag-accuracy.csv │ │ └── run_180913_2034_val-tag-loss.csv │ │ ├── model_epoch_0.pth.tar │ │ ├── model_epoch_1.pth.tar │ │ ├── model_epoch_2.pth.tar │ │ ├── model_epoch_3.pth.tar │ │ ├── model_epoch_4.pth.tar │ │ ├── model_latest.pth.tar │ │ ├── outputs │ │ ├── amplitudes_220.npy │ │ ├── amplitudes_300.npy │ │ ├── amplitudes_500.npy │ │ ├── indices_220.npy │ │ ├── indices_300.npy │ │ ├── indices_500.npy │ │ ├── preds_220.npy │ │ ├── preds_300.npy │ │ └── preds_500.npy │ │ ├── train │ │ └── events.out.tfevents.1536867273.lmosser │ │ └── val │ │ └── events.out.tfevents.1536867273.lmosser ├── split │ ├── train_split.npy │ └── val_split.npy ├── test.py └── train.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/malenov/indices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/data/malenov/indices.npy -------------------------------------------------------------------------------- /data/malenov/labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/data/malenov/labels.npy -------------------------------------------------------------------------------- /pytorch-malenov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/README.md -------------------------------------------------------------------------------- /pytorch-malenov/malenov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/malenov/__init__.py -------------------------------------------------------------------------------- /pytorch-malenov/malenov/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/malenov/dataset.py -------------------------------------------------------------------------------- /pytorch-malenov/malenov/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/malenov/model.py -------------------------------------------------------------------------------- /pytorch-malenov/malenov/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/malenov/options.py -------------------------------------------------------------------------------- /pytorch-malenov/malenov/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/malenov/utils.py -------------------------------------------------------------------------------- /pytorch-malenov/notebooks/Converting Segy to Numpy for the F3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/notebooks/Converting Segy to Numpy for the F3.ipynb -------------------------------------------------------------------------------- /pytorch-malenov/notebooks/Dataset Split and Inspections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/notebooks/Dataset Split and Inspections.ipynb -------------------------------------------------------------------------------- /pytorch-malenov/notebooks/Pytorch-MalenoV Results Inspection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/notebooks/Pytorch-MalenoV Results Inspection.ipynb -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/args.json -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_train-tag-accuracy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_train-tag-accuracy.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_train-tag-loss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_train-tag-loss.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_val-tag-accuracy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_val-tag-accuracy.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_val-tag-loss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/csv/run_180913_2001_val-tag-loss.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_0.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_0.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_1.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_1.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_2.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_2.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_3.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_3.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_4.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_4.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_5.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_5.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_6.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_6.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_7.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_7.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_8.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_8.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_epoch_9.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_epoch_9.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/model_latest.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/model_latest.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/amplitudes_220.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/amplitudes_220.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/amplitudes_300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/amplitudes_300.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/amplitudes_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/amplitudes_500.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/indices_220.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/indices_220.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/indices_300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/indices_300.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/indices_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/indices_500.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/preds_220.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/preds_220.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/preds_300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/preds_300.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/outputs/preds_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/outputs/preds_500.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/train/events.out.tfevents.1536865277.lmosser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/train/events.out.tfevents.1536865277.lmosser -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2001/val/events.out.tfevents.1536865277.lmosser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2001/val/events.out.tfevents.1536865277.lmosser -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/args.json -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_train-tag-accuracy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_train-tag-accuracy.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_train-tag-loss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_train-tag-loss.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_val-tag-accuracy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_val-tag-accuracy.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_val-tag-loss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/csv/run_180913_2034_val-tag-loss.csv -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/model_epoch_0.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/model_epoch_0.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/model_epoch_1.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/model_epoch_1.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/model_epoch_2.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/model_epoch_2.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/model_epoch_3.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/model_epoch_3.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/model_epoch_4.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/model_epoch_4.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/model_latest.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/model_latest.pth.tar -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/amplitudes_220.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/amplitudes_220.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/amplitudes_300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/amplitudes_300.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/amplitudes_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/amplitudes_500.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/indices_220.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/indices_220.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/indices_300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/indices_300.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/indices_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/indices_500.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/preds_220.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/preds_220.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/preds_300.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/preds_300.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/outputs/preds_500.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/outputs/preds_500.npy -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/train/events.out.tfevents.1536867273.lmosser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/train/events.out.tfevents.1536867273.lmosser -------------------------------------------------------------------------------- /pytorch-malenov/results/malenov/180913_2034/val/events.out.tfevents.1536867273.lmosser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/results/malenov/180913_2034/val/events.out.tfevents.1536867273.lmosser -------------------------------------------------------------------------------- /pytorch-malenov/split/train_split.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/split/train_split.npy -------------------------------------------------------------------------------- /pytorch-malenov/split/val_split.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/split/val_split.npy -------------------------------------------------------------------------------- /pytorch-malenov/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/test.py -------------------------------------------------------------------------------- /pytorch-malenov/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/pytorch-malenov/train.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukasMosser/asi-pytorch/HEAD/requirements.txt --------------------------------------------------------------------------------