Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 2.94 KB

File metadata and controls

62 lines (46 loc) · 2.94 KB

Many resources

Statistics

Machine Learning

Intro

My Machine learning pipeline checklist:

Causal inference

Vscode

  • You can use colab, but eventually you'll want to switch to vscode for faster coding and debugging.
  • Make sure you use shortcuts for everything and dont click things (its too slow). Key shortcut: highlight code in a .py script and running in a second panel interactive jupyter notebook window. After installing Jupyter extension in VS code, map "Jupyter: Run Selection/Line in Python Interactive Window" to command enter

Open your keybindings.json (Cmd+Shift+P → "Open Keyboard Shortcuts (JSON)") and ctrl+F (windows) or cmd+F (mac) "cmd+enter" and replace for "" for all commands except for "command": "jupyter.execSelectionInteractive" where you can add it again.

Then replace:

{
  "key": "cmd+enter",
  "command": "jupyter.execSelectionInteractive",
  "when": "editorTextFocus && isWorkspaceTrusted && jupyter.ownsSelection && !findInputFocussed && !isCompositeNotebook && !notebookEditorFocused && !replaceInputFocussed && editorLangId == 'python'"
}

for this:

{
  "key": "cmd+enter",
  "command": "jupyter.execSelectionInteractive",
  "when": "editorTextFocus && isWorkspaceTrusted && editorLangId == 'python'"
}

Setting up virtual environment in miniconda