Dan Ellis

Results 18 comments of Dan Ellis

Replicated on both OSX npm 6.7 and linux machines npm 6.14.2

Seconded, although I feel we should include a few other levels in the definition: ```latex \def\chapterautorefname{Chapter}% \def\sectionautorefname{Section}% \def\subsectionautorefname{Subsection}% \def\subsubsectionautorefname{Subsubsection}% \def\paragraphautorefname{Paragraph}% \def\tableautorefname{Table}% \def\equationautorefname{Equation}% ```

`\autoref` is a command from the `hyperref` package, If it is broken out into an independent reference library your comment would make sense, although again the hyperref package would then...

Not yet, gotten around to it. Data collection of another dataset takes time.

Linked example does not run.

Issue #70 suggests that the model can take other image formats, however that the .jpg format is hard coded. The work around seems to be to convert the images to...

I can't help much on the question regarding suitability, above, but the gae can definitely run using float weights, provided your networkx graph has float weights. I use `adj =...

``` git clone https://github.com/urban-1/remote-edit2.git cd remote-edit2 apm install apm link . ``` To install the above.

Changing delegate to 1 does however run. ``` base_options=BaseOptions(model_asset_path='./gesture_recognizer.task', delegate=1), ```

I seem to have the same problem when using the microphone to record on Mac. ``` default_mic = sc.default_microphone() samplerate = 48000 seconds = 20 data = default_mic.record(samplerate=samplerate, numframes=samplerate*20) print(data,len(data),max(data))...