Tristan Rice

Results 128 comments of Tristan Rice

Any update on this? I'd really like to be able to do ``` query docs($urls: [string]) { docs(func: eq(url, $urls)) { title desc } } ``` but it sounds like...

**edit: this is incorrect** Is there any update on this? Would be nice if the overcommit plugin could be extended to handle this case. I'm running into this issue trying...

Just spent some more time here and this is actually incorrect. Volcano can schedule TPU jobs without issue, I just was missing an annotation. Without the annotation the job just...

@Thor-wl are there any plans to improve this?

Are the logging levels flipped? I've been getting some ffmpeg logs that I wanted to silence to avoid spamming the console but I'm seeing some weird behavior. `av.logging.set_level(logging.INFO/DEBUG)` silences the...

I wrote some code to modify the grammar and wrap all "run" functions with context information. Might be able to adapt something like this into a more general form. https://github.com/d4l3k/wikigopher/blob/master/wikitext/debug.go

Yep, I was referring to printing the matches. There's another go PEG library which has a PrintSyntaxTree method which just prints each AST node's name and start/end. https://github.com/pointlander/peg/blob/master/peg.peg.go#L292-L298

I think adding in a similar AST struct output would make sense since you have can't print it as you visit anyways. This supports custom printing as well. My implemention...

Here's a slightly different dataset w/ the cost vol. With some model tweaks it's crisper but still not great. It seems to have the same issue with dynamic objects appearing...

Yeah, it'd be definitely nice to support non-main packages. Since go-pry works by injecting code you'd either have to specify the package or do a very expensive scan of the...