Skip to content

Instantly share code, notes, and snippets.

View nodari-l's full-sized avatar

Nodari L nodari-l

View GitHub Profile
@nodari-l
nodari-l / checklist.md
Created May 3, 2021 10:30 — forked from xdralex/checklist.md
ML/DL/CS Checklist

Deep Learning

concepts

  • forward and backward propagation
  • vanishing gradient
  • image convolution operation
  • feature map, filter/kernel
  • receptive field
  • embedding
  • translation invariance
@nodari-l
nodari-l / recover_source_code.md
Created March 22, 2017 11:48 — forked from simonw/recover_source_code.md
How to recover lost Python source code if it's still resident in-memory

How to recover lost Python source code if it's still resident in-memory

I screwed up using git ("git checkout --" on the wrong file) and managed to delete the code I had just written... but it was still running in a process in a docker container. Here's how I got it back, using https://pypi.python.org/pypi/pyrasite/ and https://pypi.python.org/pypi/uncompyle6

Attach a shell to the docker container

Install GDB (needed by pyrasite)

apt-get update && apt-get install gdb