You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- unbiasing operation is live in both GUI and CLI
- GUI allows downselection of charts in the results table
- I have some cleanup and optimization to do...
Copy file name to clipboardExpand all lines: nine-or-null/nine_or_null/__init__.py
+28-9Lines changed: 28 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
_VERSION='0.6.0'
1
+
_VERSION='0.7.0'
2
2
3
3
fromcollections.abcimportContainer
4
4
importcsv
@@ -53,7 +53,8 @@
53
53
'kernel_target': 'Choose whether to convolve with the beat digest ("digest") or the spectral accumulator ("accumulator").',
54
54
'kernel_type': 'Choose a kernel that responds to a rising edge ("rising") or local loudness ("loudest").',
55
55
'magic_offset_ms': '[ms] Add a constant value to the time of maximum kernel response. I haven\'t tracked the cause of this down yet. Might be related to attack perception?',
56
-
'full_spectrogram': 'Analyze the full spectrogram in one go - this will make the program run slower...'
56
+
'full_spectrogram': 'Analyze the full spectrogram in one go - this will make the program run slower...',
57
+
'to_paradigm': 'Choose a target paradigm for the pack unbiasing step. This will modify your simfiles!'
self.panel_plot.canvas.SetToolTip(wx.ToolTip('Double-click on a result row to examine the audio fingerprint.\n(These plots are also stored in the report directory)'))
354
+
self.panel_plot.canvas.SetToolTip(wx.ToolTip('Double-click on a result row to examine the audio fingerprint.\n(These plots are also stored in the report directory)\n\nTo limit bias adjustment to specific charts, select their cells or rows in the table.'))
0 commit comments