Brendan Fahy

Results 12 comments of Brendan Fahy

@kpu Any update on this? The instructions given above should be enough. This would be a great help to be able to use kenlm in standard python pipelines.

I am also seeing that snap to grid for teleport is not working on a hex grid. However token cloning is working for me on the same hex grid.

Thanks for the update. If there is anything I can help with happy to draft or review a release info document.

ok wow. ya thats exactly what I wanted to do but really not clear from the docs how to do that. So ok the idea is to define a new...

Ya. If this would be of value would love to contribute. Ill draft up a PR.

I am still missing something about how the solution you mentioned can work. Trying to use a generic to load a different s3 config doesnt seem to work as expected....

I think the issue is with _strip_protocol() is broken for generic in this case. ``` fsspec.generic._generic_fs["s3_source"] = fsspec.filesystem("s3", ....) generic = fsspec.filesystem("generic", default_method="generic") generic._strip_protocol('s3_source://mybucket/') ``` doesn't give what you expect....

ya https://github.com/fsspec/filesystem_spec/blob/master/fsspec/generic.py#L177 is wrong. It tries to strip the protocol using the s3fs which would remove an `s3://` but it needs to remove the `s3_source://` let me see if there...

ok s3 and s3a are different protocols though. Also not sure how this would then work with things like hdfs if you wanted to copy from 1 hdfs cluster to...