Skip to content
Snippets Groups Projects

Fixes inspired by deployment

Merged Mikhail Karnevskiy requested to merge fix/LPD_DARK into master
1 file
+ 1
0
Compare changes
  • Side-by-side
  • Inline
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
from collections import OrderedDict
from collections import OrderedDict
import warnings
import warnings
warnings.filterwarnings('ignore')
warnings.filterwarnings('ignore')
 
import glob
import h5py
import h5py
from IPython.display import display, Markdown, Latex
from IPython.display import display, Markdown, Latex
import numpy as np
import numpy as np
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
# Load constants from local files
# Load constants from local files
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
mod_idx = np.argsort(mod_names)
mod_idx = np.argsort(mod_names)
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
display(Markdown('## Processed modules ##'))
display(Markdown('## Processed modules ##'))
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
q_pad = 15
q_pad = 15
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
if u'$' in tabulate.LATEX_ESCAPE_RULES:
if u'$' in tabulate.LATEX_ESCAPE_RULES:
%% Cell type:code id: tags:
%% Cell type:code id: tags:
``` python
``` python
header = ['Module', 'High gain', 'Medium gain', 'Low gain']
header = ['Module', 'High gain', 'Medium gain', 'Low gain']
Loading