Ioannis Siglidis
Ioannis Siglidis
Hi @eddiebergman! That would be great! Well the deployment script on travis which builds the wheels is this: https://github.com/ysig/GraKeL/blob/master/.travis.yml As you can see it launches parallel instances: https://github.com/ysig/GraKeL/blob/master/.travis.yml#L32 I have...
We can add flags for newer distros to support newer versions in the install script, I'm not sure though if other things will break. If you can build locally a...
Well normally for a certain family of graph kernels you should. We never formalized this in the framework, but it would be great if someone would in the future. Normally...
I think the main question that arises from this is how easy it is for a user to implement new widgets (tools). Is there a tutorial for this?
@pngwn It's exactly a line or poly tool that returns the order of the points. It doesn't at all need to be closed in my case.
Exactly, I want the path data that could be defined over an image background. On Tue, Aug 30, 2022 at 12:41 PM pngwn ***@***.***> wrote: > Ah, so you wouldn't...
But I have not understood how in this syntax how you can write things like: ``` a: aa: 64 b: bb: ${eval: '2 * ${a.aa}'} ``` The above should work...
I did this and now I get this: `omegaconf.errors.UnsupportedInterpolationType: Unsupported interpolation type eval`
I have seen them but I don't see where my error is. After all I just use multiplication. On Tue, Dec 20, 2022, 14:15 Jasha Sommer-Simpson ***@***.***> wrote: > Hi...
Your code has an error: ```python def tile_contains_point(res): tile = babel.geo_to_tile(lat, lon, resolution=1).geometry.shapely ``` -> ```python def tile_contains_point(res): tile = babel.geo_to_tile(lat, lon, resolution=res).geometry.shapely ``` The correct code and with two...