Captioned appendix figures.
Polished some figures. Shortened existing figure captions.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import plotstyle_plt
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
from plot_functions import xlabel, ylabel, strip_zeros, letter_subplots
|
||||
from plot_functions import xlabel, ylabel
|
||||
|
||||
# GENERAL SETTINGS:
|
||||
data_path = '../data/inv/noise_env/sd_conversion.npz'
|
||||
@@ -10,16 +10,14 @@ save_path = '../figures/fig_noise_env_sd_conversion_appendix.pdf'
|
||||
# PLOT SETTINGS:
|
||||
fig_kwargs = dict(
|
||||
figsize=(32/2.54, 16/2.54),
|
||||
nrows=2,
|
||||
nrows=1,
|
||||
ncols=1,
|
||||
sharex=True,
|
||||
sharey=True,
|
||||
gridspec_kw=dict(
|
||||
wspace=0,
|
||||
hspace=0.1,
|
||||
left=0.09,
|
||||
hspace=0,
|
||||
left=0.08,
|
||||
right=0.98,
|
||||
bottom=0.08,
|
||||
bottom=0.1,
|
||||
top=0.95,
|
||||
)
|
||||
)
|
||||
@@ -30,81 +28,41 @@ grid_line_kwargs = dict(
|
||||
color='k',
|
||||
lw=0.5,
|
||||
)
|
||||
trial_kwargs = dict(
|
||||
color='k',
|
||||
alpha=0.5,
|
||||
lw=0.5,
|
||||
)
|
||||
line_kwargs = dict(
|
||||
color='black',
|
||||
lw=1,
|
||||
)
|
||||
fill_kwargs = dict(
|
||||
color='k',
|
||||
c='k',
|
||||
lw=0.5,
|
||||
alpha=0.5,
|
||||
)
|
||||
xlabels = dict(
|
||||
bottom='$\\text{scale }\\alpha$',
|
||||
)
|
||||
ylabels = dict(
|
||||
top='$\\sigma_{\\eta}\\,(PLACEHOLDER \\,\\text{realizations})$',
|
||||
bottom='$\\sigma_{\\eta}\\,(\\text{mean}\\,\\pm\\,\\text{SD})$',
|
||||
)
|
||||
xlab = '$\\text{scale }\\alpha$'
|
||||
xlab_kwargs = dict(
|
||||
y=0,
|
||||
fontsize=20,
|
||||
ha='center',
|
||||
va='bottom',
|
||||
)
|
||||
ylab = '$\\sigma_{\\eta}$'
|
||||
ylab_kwargs = dict(
|
||||
x=0,
|
||||
fontsize=20,
|
||||
ha='center',
|
||||
va='top',
|
||||
)
|
||||
title_kwargs = dict(
|
||||
t='$\\sigma_{\\text{filt}}\\,=$',
|
||||
x=0.5,
|
||||
y=1,
|
||||
ha='center',
|
||||
va='top',
|
||||
fontsize=20,
|
||||
)
|
||||
letter_kwargs = dict(
|
||||
x=0.005,
|
||||
y=0.99,
|
||||
fontsize=22,
|
||||
ha='left',
|
||||
va='top',
|
||||
)
|
||||
|
||||
# Fetch data:
|
||||
data = dict(np.load('../data/inv/noise_env/sd_conversion.npz'))
|
||||
n = data['n_trials']
|
||||
|
||||
# Adjust parameters:
|
||||
ylabels['top'] = f'$\\sigma_{{\\eta}}\\,({data["n_trials"]}\\text{{ realizations}})$'
|
||||
title_kwargs['t'] += f'$\\,{strip_zeros(data["sd_factor"])}$'
|
||||
|
||||
# Prepare graph:
|
||||
fig, (ax1, ax2) = plt.subplots(**fig_kwargs)
|
||||
fig.suptitle(**title_kwargs)
|
||||
ax1.grid(**grid_line_kwargs)
|
||||
ax1.set_xlim(data['scales'][0], data['scales'][-1])
|
||||
ax1.set_xscale('symlog', linthresh=data['scales'][1], linscale=0.5)
|
||||
ax1.set_ylim(0, 0.1)
|
||||
ylabel(ax1, ylabels['top'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ax2.grid(**grid_line_kwargs)
|
||||
xlabel(ax2, xlabels['bottom'], transform=fig.transFigure, **xlab_kwargs)
|
||||
ylabel(ax2, ylabels['bottom'], transform=fig.transFigure, **ylab_kwargs)
|
||||
letter_subplots((ax1, ax2), **letter_kwargs)
|
||||
fig, ax = plt.subplots(**fig_kwargs)
|
||||
ax.grid(**grid_line_kwargs)
|
||||
ax.set_xlim(data['scales'][0], data['scales'][-1])
|
||||
ax.set_xscale('symlog', linthresh=data['scales'][1], linscale=0.5)
|
||||
ax.set_ylim(0, 0.08)
|
||||
ax.yaxis.set_major_locator(plt.MultipleLocator(0.02))
|
||||
xlabel(ax, xlab, transform=fig.transFigure, **xlab_kwargs)
|
||||
ylabel(ax, ylab, transform=fig.transFigure, **ylab_kwargs)
|
||||
|
||||
# Plot individual trials:
|
||||
ax1.plot(data['scales'], data['trials'], **trial_kwargs)
|
||||
|
||||
# Plot mean and spread across trials:
|
||||
ax2.plot(data['scales'], data['mean'], **line_kwargs)
|
||||
ax2.fill_between(data['scales'], data['mean'] - data['spread'], data['mean'] + data['spread'], **fill_kwargs)
|
||||
ax.plot(data['scales'], data['sd_noise'][..., 0], **line_kwargs)
|
||||
|
||||
if save_path is not None:
|
||||
fig.savefig(save_path)
|
||||
|
||||
@@ -45,7 +45,7 @@ save_path = '../figures/fig_features_cross_species.pdf'
|
||||
|
||||
|
||||
# ANALYSIS SETTINGS:
|
||||
thresh_rel = np.array([0, 0.5, 1, 1.5, 2, 2.5, 3])[5]
|
||||
thresh_rel = np.array([0, 0.5, 1, 1.5, 2, 2.5, 3])[4]
|
||||
single_spec_file = True # Only use example files for cross-species comparison
|
||||
equalize_spec_files = False # Prune to minimum available across species
|
||||
n_song = n_spec#None # Limit to n first songs of in-species dataset (None for all)
|
||||
|
||||
@@ -13,9 +13,9 @@ from IPython import embed
|
||||
|
||||
# GENERAL SETTINGS:
|
||||
target_species = [
|
||||
# 'Chorthippus_biguttulus',
|
||||
# 'Chorthippus_mollis',
|
||||
# 'Chrysochraon_dispar',
|
||||
'Chorthippus_biguttulus',
|
||||
'Chorthippus_mollis',
|
||||
'Chrysochraon_dispar',
|
||||
# 'Euchorthippus_declivus',
|
||||
'Gomphocerippus_rufus',
|
||||
'Omocestus_rufipes',
|
||||
@@ -35,7 +35,15 @@ save_path = '../figures/fig_invariance_cross_species_thresh_appendix.pdf'
|
||||
|
||||
# ANALYSIS SETTINGS:
|
||||
exclude_zero = True
|
||||
thresh_rel = np.array([0, 0.5, 1, 1.5, 2, 2.5, 3])
|
||||
thresh_rel = np.array([
|
||||
# 0,
|
||||
0.5,
|
||||
1,
|
||||
# 1.5,
|
||||
2,
|
||||
# 2.5,
|
||||
3,
|
||||
])
|
||||
|
||||
# SUBSET SETTINGS:
|
||||
types = np.array([1, -1, 2, -2, 3, -3, 4, -4])
|
||||
@@ -53,15 +61,15 @@ fig_kwargs = dict(
|
||||
sharex=True,
|
||||
sharey=True,
|
||||
gridspec_kw=dict(
|
||||
wspace=0.2,
|
||||
hspace=0.75,
|
||||
wspace=0.3,
|
||||
hspace=0.5,
|
||||
left=0.1,
|
||||
right=0.95,
|
||||
bottom=0.08,
|
||||
right=0.97,
|
||||
bottom=0.1,
|
||||
top=0.98,
|
||||
)
|
||||
)
|
||||
inset_x_bounds = [0, -0.5, 1, 0.4]
|
||||
inset_x_bounds = [0, -0.3, 1, 0.25]
|
||||
inset_y_bounds = [1.01, 0, 0.1, 1]
|
||||
|
||||
# PLOT SETTINGS:
|
||||
@@ -162,6 +170,7 @@ y_dist_kwargs = dict(
|
||||
fig, axes = plt.subplots(**fig_kwargs)
|
||||
axes[0, 0].set_ylim(0, 1)
|
||||
axes[0, 0].yaxis.set_major_locator(plt.MultipleLocator(yloc))
|
||||
axes[0, 0].xaxis.set_major_locator(plt.LogLocator(base=10, subs=(1,)))
|
||||
super_xlabel(xlab, fig, axes[-1, 0], axes[-1, -1], **xlab_kwargs)
|
||||
super_ylabel(ylab, fig, axes[0, 0], axes[-1, 0], **ylab_super_kwargs)
|
||||
for ax, species in zip(axes[0, :], target_species):
|
||||
@@ -197,25 +206,27 @@ for i, species in enumerate(target_species):
|
||||
symlog_kwargs = dict(linthresh=scales[scales > 0][0], linscale=0.5)
|
||||
|
||||
# Run through thresholds:
|
||||
for j in range(thresh_rel.size):
|
||||
for j, thresh in enumerate(thresh_rel):
|
||||
ax = axes[j, i]
|
||||
ind = np.nonzero(data['thresh_rel'] == thresh)[0][0]
|
||||
|
||||
# Plot swarm of feature-specific intensity curves:
|
||||
handles = ax.plot(scales, measure[:, :, j], lw=lw['swarm'])
|
||||
handles = ax.plot(scales, measure[:, :, ind], lw=lw['swarm'])
|
||||
assign_colors(handles, config['k_specs'][:, 0], kern_colors)
|
||||
reorder_by_sd(handles, measure[:, :, j])
|
||||
reorder_by_sd(handles, measure[:, :, ind])
|
||||
|
||||
# Plot single compressed intensity curve:
|
||||
compressed = np.median(measure[:, :, j], axis=1)
|
||||
compressed = np.median(measure[:, :, ind], axis=1)
|
||||
ax.plot(scales, compressed, **median_kwargs)
|
||||
|
||||
# Plot distribution of saturation levels:
|
||||
inset = ax.inset_axes(inset_y_bounds)
|
||||
inset.set_ylim(0, 1)
|
||||
inset.axis('off')
|
||||
y_dist(inset, measure[-1, :, j], **y_dist_kwargs)
|
||||
y_dist(inset, measure[-1, :, ind], **y_dist_kwargs)
|
||||
|
||||
# Plot distribution of saturation points:
|
||||
crit_inds = np.array(get_saturation(measure[:, :, j], **plateau_settings)[1])
|
||||
crit_inds = np.array(get_saturation(measure[:, :, ind], **plateau_settings)[1])
|
||||
if np.isnan(crit_inds).sum():
|
||||
print(f'WARNING: No saturation points found for {species} at threshold {thresh_rel[j]}')
|
||||
crit_inds = crit_inds[~np.isnan(crit_inds)].astype(int)
|
||||
@@ -223,12 +234,13 @@ for i, species in enumerate(target_species):
|
||||
inset = ax.inset_axes(inset_x_bounds)
|
||||
inset.set_xlim(scales[0], scales[-1])
|
||||
inset.set_xscale('symlog', **symlog_kwargs)
|
||||
inset.xaxis.set_major_locator(plt.LogLocator(base=10, subs=(1,)))
|
||||
hide_axis(inset, 'left')
|
||||
if j < thresh_rel.size - 1:
|
||||
hide_ticks(inset, 'bottom')
|
||||
x_dist(inset, crit_scales, **x_dist_kwargs)
|
||||
|
||||
if j > 0:
|
||||
if thresh > 0:
|
||||
# Plot single saturation point:
|
||||
crit_ind = get_saturation(compressed, **plateau_settings)[1]
|
||||
crit_scale = scales[crit_ind]
|
||||
@@ -237,6 +249,7 @@ for i, species in enumerate(target_species):
|
||||
# Posthocs:
|
||||
axes[0, 0].set_xscale('symlog', **symlog_kwargs)
|
||||
axes[0, 0].set_xlim(scales[0], scales[-1])
|
||||
axes[0, 0].xaxis.set_major_locator(plt.LogLocator(base=10, subs=(1,)))
|
||||
|
||||
if save_path is not None:
|
||||
fig.savefig(save_path)
|
||||
|
||||
@@ -6,13 +6,13 @@ from plot_functions import xlabel, ylabel
|
||||
from IPython import embed
|
||||
|
||||
# Analysis settings:
|
||||
mode = ['thresh_lp', 'full', 'short', 'field'][3]
|
||||
mode = ['thresh_lp', 'full', 'short', 'field'][0]
|
||||
thresh_path = f'../data/inv/{mode}/thresholds.npz'
|
||||
save_path = f'../figures/fig_kernel_sd_perc_{mode}_appendix.pdf'
|
||||
|
||||
# Plot settings:
|
||||
fig_kwargs = dict(
|
||||
figsize=(32/2.54, 16/2.54),
|
||||
figsize=(32/2.54, 15/2.54),
|
||||
nrows=1,
|
||||
ncols=1,
|
||||
gridspec_kw=dict(
|
||||
@@ -41,8 +41,8 @@ grid_line_kwargs = dict(
|
||||
color='k',
|
||||
lw=0.5,
|
||||
)
|
||||
xlab = '$\\text{multiple of }\\sigma_{k_i}$'
|
||||
ylab = '$P\\,(c_i > \\Theta_i)$'
|
||||
xlab = '$\\Theta_i\\,[\\text{multiples of }\\sigma_{c_i}]$'
|
||||
ylab = '$\\mu_{f_i}\\,\\approx\\,P\\,(c_i > \\Theta_i)$'
|
||||
xlab_kwargs = dict(
|
||||
y=0,
|
||||
fontsize=20,
|
||||
@@ -55,6 +55,8 @@ ylab_kwargs = dict(
|
||||
ha='center',
|
||||
va='top',
|
||||
)
|
||||
xloc = 1
|
||||
yloc = 0.25
|
||||
|
||||
# Load threshold data:
|
||||
data = dict(np.load(thresh_path))
|
||||
@@ -69,6 +71,8 @@ fig, ax = plt.subplots(**fig_kwargs)
|
||||
ax.grid(**grid_line_kwargs)
|
||||
ax.set_xlim(factors[0], factors[-1])
|
||||
ax.set_ylim(-0.01, 1.01)
|
||||
ax.xaxis.set_major_locator(plt.MultipleLocator(xloc))
|
||||
ax.yaxis.set_major_locator(plt.MultipleLocator(yloc))
|
||||
ylabel(ax, ylab, transform=fig.transFigure, **ylab_kwargs)
|
||||
xlabel(ax, xlab, transform=fig.transFigure, **xlab_kwargs)
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ stages = ['filt', 'env', 'log', 'inv', 'conv', 'bi', 'feat']
|
||||
save_path = '../figures/'
|
||||
|
||||
# GRAPH SETTINGS:
|
||||
fig_kwargs = dict(
|
||||
fig_pre_kwargs = dict(
|
||||
figsize=(32/2.54, 16/2.54),
|
||||
sharex='col',
|
||||
subplot_kw=dict(
|
||||
@@ -28,10 +28,17 @@ fig_kwargs = dict(
|
||||
hspace=0.3,
|
||||
left=0.12,
|
||||
right=0.99,
|
||||
bottom=0.08,
|
||||
top=0.95
|
||||
bottom=0.09,
|
||||
top=0.97
|
||||
),
|
||||
)
|
||||
fig_feat_kwargs = fig_pre_kwargs.copy()
|
||||
fig_feat_kwargs['gridspec_kw'] = fig_pre_kwargs['gridspec_kw'].copy()
|
||||
fig_feat_kwargs['gridspec_kw'].update(dict(
|
||||
left=0.09,
|
||||
wspace=0.15,
|
||||
hspace=0.2,
|
||||
))
|
||||
|
||||
# PLOT SETTINGS:
|
||||
fs = dict(
|
||||
@@ -76,13 +83,15 @@ xlab_kwargs = dict(
|
||||
va='bottom',
|
||||
fontsize=fs['lab_norm'],
|
||||
)
|
||||
ylab_kwargs = dict(
|
||||
ylab_pre_kwargs = dict(
|
||||
x=0.03,
|
||||
rotation=0,
|
||||
ha='center',
|
||||
va='center',
|
||||
fontsize=fs['lab_tex'],
|
||||
)
|
||||
ylab_feat_kwargs = ylab_pre_kwargs.copy()
|
||||
ylab_feat_kwargs['x'] = 0.02
|
||||
xloc = dict(
|
||||
full=2,
|
||||
zoom=0.2
|
||||
@@ -98,42 +107,28 @@ yloc_full = dict(
|
||||
yloc_zoom = dict(
|
||||
filt=0.1,
|
||||
env=0.02,
|
||||
log=50,
|
||||
log=25,
|
||||
inv=10,
|
||||
conv=0.5,
|
||||
feat=1
|
||||
)
|
||||
letter_kwargs = dict(
|
||||
x=0,
|
||||
xref=0,
|
||||
y=1,
|
||||
ha='left',
|
||||
va='bottom',
|
||||
va='center',
|
||||
fontsize=fs['letter'],
|
||||
)
|
||||
zoom_rel = np.array([0.3, 0.4])
|
||||
zoom_rel = np.array([0.295, 0.4])
|
||||
zoom_kwargs = dict(
|
||||
color=3 * (0.85,),
|
||||
zorder=0,
|
||||
linewidth=0
|
||||
)
|
||||
# kernels = np.array([
|
||||
# [1, 0.002],
|
||||
# [1, 0.016],
|
||||
# [-1, 0.004],
|
||||
# [-1, 0.032],
|
||||
# [2, 0.004],
|
||||
# [2, 0.016],
|
||||
# [-2, 0.002],
|
||||
# [-2, 0.032],
|
||||
# [3, 0.008],
|
||||
# [3, 0.032],
|
||||
# [-3, 0.008],
|
||||
# [-3, 0.032],
|
||||
# [4, 0.004],
|
||||
# [4, 0.032],
|
||||
# [-4, 0.004],
|
||||
# [-4, 0.032]
|
||||
# ])
|
||||
types = np.array([1, -1, 2, -2, 3, -3, 4, -4])
|
||||
# types = [1, -1, 2, -2, 3, -3, 4, -4, 5, -5, 6, -6, 7, -7, 8, -8, 9, -9, 10, -10]
|
||||
sigmas = np.array([0.004, 0.032])
|
||||
# sigmas = [0.001, 0.002, 0.004, 0.008, 0.016, 0.032]
|
||||
t = [1, -1, 2, -2, 3, -3, 4, -4]
|
||||
s = [0.004, 0.032]
|
||||
kernels = np.array([[i, j] for i in t for j in s])
|
||||
@@ -162,31 +157,31 @@ for data_path in data_paths:
|
||||
|
||||
|
||||
# PART I: PREPROCESSING STAGE
|
||||
fig, axes = plt.subplots(4, 2, **fig_kwargs)
|
||||
fig, axes = plt.subplots(4, 2, **fig_pre_kwargs)
|
||||
super_xlabel(xlabels['super'], fig, axes[0, 0], axes[0, -1], **xlab_kwargs)
|
||||
[hide_axis(ax, 'bottom') for ax in axes[:-1, :].ravel()]
|
||||
|
||||
# Bandpass-filtered signal:
|
||||
ax_full, ax_zoom = axes[0, :]
|
||||
ylabel(ax_full, ylabels['filt'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['filt'], transform=fig.transFigure, **ylab_pre_kwargs)
|
||||
plot_line(ax_full, t_full, data['filt'], c=colors['filt'], lw=lw_full['filt'], yloc=yloc_full['filt'])
|
||||
plot_line(ax_zoom, t_zoom, data['filt'][zoom_mask], c=colors['filt'], lw=lw_zoom['filt'], yloc=yloc_zoom['filt'])
|
||||
|
||||
# Signal envelope:
|
||||
ax_full, ax_zoom = axes[1, :]
|
||||
ylabel(ax_full, ylabels['env'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['env'], transform=fig.transFigure, **ylab_pre_kwargs)
|
||||
plot_line(ax_full, t_full, data['env'], ymin=0, c=colors['env'], lw=lw_full['env'], yloc=yloc_full['env'])
|
||||
plot_line(ax_zoom, t_zoom, data['env'][zoom_mask], ymin=0, c=colors['env'], lw=lw_zoom['env'], yloc=yloc_zoom['env'])
|
||||
|
||||
# Logarithmic envelope:
|
||||
ax_full, ax_zoom = axes[2, :]
|
||||
ylabel(ax_full, ylabels['log'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['log'], transform=fig.transFigure, **ylab_pre_kwargs)
|
||||
plot_line(ax_full, t_full, data['log'], ymax=0, c=colors['log'], lw=lw_full['log'], yloc=yloc_full['log'])
|
||||
plot_line(ax_zoom, t_zoom, data['log'][zoom_mask], ymax=0, c=colors['log'], lw=lw_zoom['log'], yloc=yloc_zoom['log'])
|
||||
plot_line(ax_zoom, t_zoom, data['log'][zoom_mask], c=colors['log'], lw=lw_zoom['log'], yloc=yloc_zoom['log'])
|
||||
|
||||
# Adapted envelope:
|
||||
ax_full, ax_zoom = axes[3, :]
|
||||
ylabel(ax_full, ylabels['inv'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['inv'], transform=fig.transFigure, **ylab_pre_kwargs)
|
||||
plot_line(ax_full, t_full, data['inv'], c=colors['inv'], lw=lw_full['inv'], yloc=yloc_full['inv'])
|
||||
plot_line(ax_zoom, t_zoom, data['inv'][zoom_mask], c=colors['inv'], lw=lw_zoom['inv'], yloc=yloc_zoom['inv'])
|
||||
|
||||
@@ -197,25 +192,17 @@ for data_path in data_paths:
|
||||
ax_zoom.xaxis.set_major_locator(plt.MultipleLocator(xloc['zoom']))
|
||||
indicate_zoom(fig, axes[0, 0], axes[-1, 0], zoom_abs, **zoom_kwargs)
|
||||
indicate_zoom(fig, axes[0, 1], axes[-1, 1], zoom_abs, **zoom_kwargs)
|
||||
letter_subplots(axes[:, 0], **letter_kwargs)
|
||||
letter_subplots(axes[:, 0], ref=fig.transFigure, **letter_kwargs)
|
||||
if save_path is not None:
|
||||
fig.savefig(f'{save_path}fig_pre_stages.pdf')
|
||||
|
||||
# Update parameters:
|
||||
fig_kwargs['gridspec_kw'].update(
|
||||
left=0.09,
|
||||
)
|
||||
ylab_kwargs.update(
|
||||
x=0.02,
|
||||
)
|
||||
|
||||
# PART II: FEATURE EXTRACTION STAGE:
|
||||
fig, axes = plt.subplots(3, 2, **fig_kwargs)
|
||||
fig, axes = plt.subplots(3, 2, **fig_feat_kwargs)
|
||||
super_xlabel(xlabels['super'], fig, axes[0, 0], axes[0, -1], **xlab_kwargs)
|
||||
|
||||
# Convolutional filter responses:
|
||||
ax_full, ax_zoom = axes[0, :]
|
||||
ylabel(ax_full, ylabels['conv'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['conv'], transform=fig.transFigure, **ylab_feat_kwargs)
|
||||
signal = data['conv'][:, kern_inds]
|
||||
handles = plot_line(ax_full, t_full, signal, lw=lw_full['conv'], yloc=yloc_full['conv'])
|
||||
assign_colors(handles, kern_specs[:, 0], conv_colors)
|
||||
@@ -228,7 +215,7 @@ for data_path in data_paths:
|
||||
|
||||
# Binary responses:
|
||||
ax_full, ax_zoom = axes[1, :]
|
||||
ylabel(ax_full, ylabels['bi'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['bi'], transform=fig.transFigure, **ylab_feat_kwargs)
|
||||
signal = data['bi'][:, kern_inds]
|
||||
handles = plot_barcode(ax_full, t_full, signal, lw=lw_full['bi'])
|
||||
assign_colors(handles, kern_specs[:, 0], bi_colors)
|
||||
@@ -237,7 +224,7 @@ for data_path in data_paths:
|
||||
|
||||
# Finalized features:
|
||||
ax_full, ax_zoom = axes[2, :]
|
||||
ylabel(ax_full, ylabels['feat'], transform=fig.transFigure, **ylab_kwargs)
|
||||
ylabel(ax_full, ylabels['feat'], transform=fig.transFigure, **ylab_feat_kwargs)
|
||||
signal = data['feat'][:, kern_inds]
|
||||
handles = plot_line(ax_full, t_full, signal, ymin=0, ymax=1, c=colors['feat'], lw=lw_full['feat'], yloc=yloc_full['feat'])
|
||||
assign_colors(handles, kern_specs[:, 0], feat_colors)
|
||||
@@ -251,7 +238,7 @@ for data_path in data_paths:
|
||||
ax_zoom.xaxis.set_major_locator(plt.MultipleLocator(xloc['zoom']))
|
||||
indicate_zoom(fig, axes[0, 0], axes[-1, 0], zoom_abs, **zoom_kwargs)
|
||||
indicate_zoom(fig, axes[0, 1], axes[-1, 1], zoom_abs, **zoom_kwargs)
|
||||
letter_subplots(axes[:, 0], **letter_kwargs)
|
||||
letter_subplots(axes[:, 0], ref=fig.transFigure, **letter_kwargs)
|
||||
if save_path is not None:
|
||||
fig.savefig(f'{save_path}fig_feat_stages.pdf')
|
||||
plt.show()
|
||||
|
||||
@@ -90,6 +90,12 @@ text_kwargs = dict(
|
||||
ha='right',
|
||||
va='top',
|
||||
)
|
||||
plateau_dot_kwargs = dict(
|
||||
marker='o',
|
||||
markersize=8,
|
||||
markeredgewidth=1,
|
||||
clip_on=False,
|
||||
)
|
||||
|
||||
# Prepare graph:
|
||||
fig, axes = plt.subplots(**fig_kwargs)
|
||||
@@ -111,12 +117,22 @@ for species, ax in zip(target_species, axes):
|
||||
# Plot distribution of saturation points:
|
||||
handles.append(ax.bar(bins, hist, width=bins[1] - bins[0], fc=color, **bar_kwargs))
|
||||
ax.set_ylim(0, hist.max() * 1.05)
|
||||
if species == 'Gomphocerippus_rufus':
|
||||
ax.yaxis.set_major_locator(plt.MultipleLocator(0.05))
|
||||
else:
|
||||
ax.yaxis.set_major_locator(plt.MultipleLocator(0.03))
|
||||
|
||||
# Indicate mean of distribution:
|
||||
ax.axvline(data['crit_scales'].mean(), **mean_kwargs)
|
||||
# ax.axvline(data['crit_scales'].mean(), **mean_kwargs)
|
||||
|
||||
# Indicate number of songs:
|
||||
ax.text(**text_kwargs, s=f'n = {n_songs}', transform=ax.transAxes)
|
||||
ax.text(**text_kwargs, s=f'n={n_songs}', transform=ax.transAxes)
|
||||
|
||||
# Indicate saturation point of condensed curve:
|
||||
ax.plot(data['crit_scale'], 0, c='w', alpha=1, zorder=5.5,
|
||||
transform=ax.get_xaxis_transform(), **plateau_dot_kwargs)
|
||||
ax.plot(data['crit_scale'], 0, mfc=color, mec='k', alpha=0.75, zorder=6,
|
||||
transform=ax.get_xaxis_transform(), **plateau_dot_kwargs)
|
||||
|
||||
# Posthocs:
|
||||
labels = [shorten_species(species) for species in target_species]
|
||||
|
||||
@@ -1,26 +1,24 @@
|
||||
import glob
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
from thunderhopper.filetools import search_files
|
||||
from thunderhopper.modeltools import load_data
|
||||
from thunderhopper.filters import sosfilter
|
||||
from IPython import embed
|
||||
|
||||
# GENERAL SETTINGS:
|
||||
target = 'Omocestus_rufipes'
|
||||
data_path = glob.glob(f'../data/processed/{target}*.npz')[0]
|
||||
data_path = search_files(target, dir='../data/processed/')[0]
|
||||
save_path = '../data/inv/noise_env/'
|
||||
|
||||
# ANALYSIS SETTINGS:
|
||||
scales = np.geomspace(0.1, 10000, 200)
|
||||
scales = np.geomspace(0.01, 1000, 100)
|
||||
sd_inputs = np.array([1.0])
|
||||
n_trials = 10
|
||||
tol_to_one = 0.1
|
||||
n_trials = 100
|
||||
|
||||
# EXECUTION:
|
||||
|
||||
# Load signal data:
|
||||
data, config = load_data(data_path, files='filt')
|
||||
signal, rate = data['filt'], config['rate']
|
||||
data, config = load_data(data_path, files='raw')
|
||||
signal, rate = data['raw'], config['rate']
|
||||
|
||||
# Reduce to song segment and normalize:
|
||||
time = np.arange(signal.shape[0]) / rate
|
||||
@@ -28,67 +26,60 @@ start, end = data['songs_0'].ravel()
|
||||
segment = (time >= start) & (time <= end)
|
||||
signal /= signal[segment].std()
|
||||
|
||||
# Get rescaled signals (time, scale):
|
||||
# Rescale signal (time, scale):
|
||||
signal = signal[:, None] * scales[None, :]
|
||||
|
||||
# Prepare storage:
|
||||
if sd_inputs.size > 1:
|
||||
current_match = 0
|
||||
storage = dict(
|
||||
scales=scales,
|
||||
n_trials=n_trials,
|
||||
sd_factor=np.array([0.]),
|
||||
trials=np.zeros((scales.size, n_trials), dtype=float),
|
||||
mean=np.zeros(scales.size, dtype=float),
|
||||
spread=np.zeros(scales.size, dtype=float),
|
||||
)
|
||||
sd_noise = np.zeros((scales.size, n_trials, sd_inputs.size), dtype=float)
|
||||
|
||||
# Analyze piece-wise:
|
||||
rng = np.random.default_rng()
|
||||
for i, sigma in enumerate(sd_inputs):
|
||||
print(f'Testing SD: {sigma:.3f} ...')
|
||||
|
||||
# Add Gaussian noise of given SD to rescaled signals (time, scale, trial):
|
||||
mix = signal[..., None] + rng.normal(0, sigma, (*signal.shape, n_trials))
|
||||
# Prepare trial storage:
|
||||
sd_trials = np.zeros((segment.sum(), scales.size, n_trials), dtype=float)
|
||||
|
||||
# Get mixture envelopes (time, scale, trial):
|
||||
mix = sosfilter(np.abs(mix), rate, config['env_fcut'], 'lp',
|
||||
padtype='even', padlen=config['padlen'])[segment, ...]
|
||||
# Run trials:
|
||||
for j in range(n_trials):
|
||||
# Mix signals with white noise of target SD:
|
||||
mix = signal + rng.normal(0, sigma, signal.shape)
|
||||
|
||||
# Process mixture:
|
||||
mix = sosfilter(mix, rate, config['bp_fcut'], 'bp',
|
||||
padtype='fixed', padlen=config['padlen'])
|
||||
mix = sosfilter(np.abs(mix), rate, config['env_fcut'], 'lp',
|
||||
padtype='even', padlen=config['padlen'])
|
||||
|
||||
# Log current trial:
|
||||
sd_trials[..., j] = mix[segment, :]
|
||||
|
||||
# Get noise remainders of mean over trials:
|
||||
mix -= mix.mean(axis=-1, keepdims=True)
|
||||
sd_trials -= sd_trials.mean(axis=-1, keepdims=True)
|
||||
|
||||
# Estimate noise SD:
|
||||
sd = mix.std(axis=0)
|
||||
# Average SD over trials:
|
||||
mean_sd = sd.mean(axis=-1)
|
||||
sd_noise[:, :, i] = sd_trials.std(axis=0)
|
||||
|
||||
# Log single-run results:
|
||||
if sd_inputs.size == 1:
|
||||
storage = dict(
|
||||
scales=scales,
|
||||
n_trials=n_trials,
|
||||
sd_factor=sigma,
|
||||
trials=sd,
|
||||
mean=mean_sd,
|
||||
spread=sd.std(axis=-1),
|
||||
)
|
||||
break
|
||||
# # Add Gaussian noise of given SD to rescaled signals (time, scale, trial):
|
||||
# mix = signal[..., None] + rng.normal(0, sigma, (*signal.shape, n_trials))
|
||||
|
||||
# Update multi-run results if better than previous:
|
||||
n_match = (np.abs(1 - mean_sd) <= tol_to_one).sum()
|
||||
if n_match > current_match:
|
||||
print(f'Found better SD: {sigma:.3f} with {n_match} matches (previous: {current_match})')
|
||||
storage['sd_factor'][0] = sigma
|
||||
storage['trials'][:, :] = sd
|
||||
storage['mean'][:] = mean_sd
|
||||
storage['spread'][:] = sd.std(axis=-1)
|
||||
current_match = n_match
|
||||
del mix
|
||||
del signal
|
||||
# # Get mixture envelopes (time, scale, trial):
|
||||
# mix = sosfilter(np.abs(mix), rate, config['env_fcut'], 'lp',
|
||||
# padtype='even', padlen=config['padlen'])[segment, ...]
|
||||
|
||||
# # Get noise remainders of mean over trials:
|
||||
# mix -= mix.mean(axis=-1, keepdims=True)
|
||||
|
||||
# # Estimate noise SD:
|
||||
# sd_noise[:, :, i] = mix.std(axis=0)
|
||||
|
||||
if save_path is not None:
|
||||
np.savez(save_path + 'sd_conversion.npz', **storage)
|
||||
archive = dict(
|
||||
scales=scales,
|
||||
sd_input=sd_inputs,
|
||||
sd_noise=sd_noise,
|
||||
)
|
||||
np.savez(save_path + 'sd_conversion.npz', **archive)
|
||||
|
||||
print('Done.')
|
||||
embed()
|
||||
|
||||
@@ -14,7 +14,8 @@ target_species = [
|
||||
'Omocestus_rufipes',
|
||||
'Pseudochorthippus_parallelus',
|
||||
]
|
||||
search_path = '../data/inv/log_hp/collected/'
|
||||
collect_path = '../data/inv/log_hp/collected/'
|
||||
condense_path = '../data/inv/log_hp/condensed/'
|
||||
save_path = '../data/inv/log_hp/saturation/'
|
||||
|
||||
# ANALYSIS SETTINGS:
|
||||
@@ -32,7 +33,7 @@ pad = 0.05
|
||||
# PREPARATION:
|
||||
if compute_hist:
|
||||
species_scales = []
|
||||
min_scale, max_scale = [], []
|
||||
min_scale, max_scale = np.inf, -np.inf
|
||||
archives = [{} for _ in target_species]
|
||||
|
||||
# EXECUTION:
|
||||
@@ -40,31 +41,48 @@ for i, species in enumerate(target_species):
|
||||
print(f'Processing {species}')
|
||||
|
||||
# Load accumulated invariance data:
|
||||
path = search_files(species, dir=search_path)[0]
|
||||
path = search_files(species, dir=collect_path)[0]
|
||||
data, config = load_data(path, ['scales', 'measure_inv'])
|
||||
|
||||
# Find upper saturation point per song file:
|
||||
crit_inds = np.array(get_saturation(data['measure_inv'], **plateau_settings)[1])
|
||||
crit_scales = data['scales'][crit_inds]
|
||||
|
||||
# Load condensed invariance data:
|
||||
path = search_files(species, incl=['noise', 'norm-base'], dir=condense_path)[0]
|
||||
data, _ = load_data(path, ['scales', 'mean_inv'])
|
||||
|
||||
# Find single upper saturation point of condensed curve:
|
||||
crit_ind = get_saturation(data['mean_inv'].mean(axis=-1), **plateau_settings)[1]
|
||||
crit_scale = data['scales'][crit_ind]
|
||||
|
||||
# Output options:
|
||||
if not compute_hist:
|
||||
# Save species data immediately:
|
||||
archive = dict(crit_inds=crit_inds, crit_scales=crit_scales, scales=data['scales'])
|
||||
archive = dict(
|
||||
scales=data['scales'],
|
||||
crit_inds=crit_inds,
|
||||
crit_scales=crit_scales,
|
||||
crit_ind=crit_ind,
|
||||
crit_scale=crit_scale,
|
||||
)
|
||||
save_data(save_path + species, archive, config, overwrite=True)
|
||||
continue
|
||||
|
||||
# Log but don't save data yet:
|
||||
archives[i]['crit_inds'] = crit_inds
|
||||
archives[i]['crit_scales'] = crit_scales
|
||||
archives[i]['scales'] = data['scales']
|
||||
min_scale.append(crit_scales.min())
|
||||
max_scale.append(crit_scales.max())
|
||||
min_scale = min(crit_scales.min(), min_scale)
|
||||
max_scale = max(crit_scales.max(), max_scale)
|
||||
archives[i].update(
|
||||
scales=data['scales'],
|
||||
crit_inds=crit_inds,
|
||||
crit_scales=crit_scales,
|
||||
crit_ind=crit_ind,
|
||||
crit_scale=crit_scale,
|
||||
)
|
||||
|
||||
# Optional histogram:
|
||||
if compute_hist:
|
||||
# Generated shared histogram edges:
|
||||
min_scale, max_scale = min(min_scale), max(max_scale)
|
||||
# Generated shared bin edges:
|
||||
pad *= (max_scale - min_scale)
|
||||
edges = np.linspace(max(0, min_scale - pad), max_scale + pad, bins + 1)
|
||||
centers = edges[:-1] + np.diff(edges) / 2
|
||||
|
||||
Reference in New Issue
Block a user