-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support cloud filesystems #148
Comments
I'd like if we could have an API that takes as input a file system interface. If we only need to support simple operations like read, write, list dir, do you think it would be viable? |
Was thinking to maybe do something similar to TF's with gfile.open(filepath) as f:
do_something_with(f) If the But we don't want a dependency on TF, so I'm searching to see if there is another library we can use instead |
I think we should make this a low priority, given there doesn't seem to exist an OSS dependency that doesn't bring in TF at this point. |
We can use |
We need to support cloud filesystems to sign models stored in cloud buckets without downloading them locally. This is especially useful if we want to sign large models.
The text was updated successfully, but these errors were encountered: