endolith

Results 132 comments of endolith

``` Connect to Gmail server. Error: 'module' object has no attribute 'create_default_context'. === Exception traceback === Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/gmvault-1.9.2b1-py2.7.egg/gmv/gmv_cmd.py", line 746, in run self._sync(args, credential) File...

https://stackoverflow.com/a/23430742/125507 might be relevant? and https://graphviz.gitlab.io/faq/#FaqBalanceTree

Same error: ``` model = Sequential([ Dense(2, input_shape=(N, 2), use_bias=False) ]) ann_viz(model) Traceback (most recent call last): File "", line 1, in ann_viz(model) File "C:\Anaconda3\lib\site-packages\ann_visualizer\visualize.py", line 42, in ann_viz input_layer...

The most important thing to realize is the package names are not the same: - conda install graphviz installs the binaries. - pip install graphviz installs the python frontend for...

I reorganized it into an importable package, so this is partially fixed. Still some loose ends to tie up, though.

@zephray Sorry for the delay. Well, it needs to be removed before windowing or else the DC gets through the window: ![Figure_1](https://user-images.githubusercontent.com/58611/162816419-9d0805aa-6555-45f6-be9b-50e60345eba9.png) Should it also be removed _after_ windowing? Yeah,...

Probably the right way to do it is to emulate an analog analyzer and apply a bandpass filter with customizable cutoff frequencies

I cut out 2.4 to 4.0 seconds, which should be E4 = 329.63 Hz: - `freq_from_fft` says 329.366907 Hz (E4 -1 cent) - `freq_from_crossings` says 634.629287 Hz, (which I would...

Looks like I should also have de-meaned the spectra before summing them. HPS function was only half-finished

With a 1 kHz sqrtsin test wave, and `zero_phase=False` (default): 1000.462192 Hz ![Harmonic product spectra being summed with zero_phase=False](https://user-images.githubusercontent.com/58611/27007919-83e3d744-4e31-11e7-8c27-fe96bab81b33.png) After changing to `zero_phase=True`: 1000.018354 Hz ![Harmonic product spectra being summed...