Skip to content
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

Gather requirements for a data loader for scivision (potential replacement for Intake) #480

Open
edwardchalstrey1 opened this issue Jan 10, 2023 · 3 comments
Assignees
Labels
co-working suitable for group session enhancement New feature or request
Milestone

Comments

@edwardchalstrey1
Copy link
Contributor

edwardchalstrey1 commented Jan 10, 2023

@edwardchalstrey1 edwardchalstrey1 changed the title lightweight intake replacement Refine data loading for scivision Jan 10, 2023
@ots22 ots22 changed the title Refine data loading for scivision Gather requirements for a data loader for scivision (potential replacement for Intake) Jan 10, 2023
@ots22 ots22 added enhancement New feature or request co-working suitable for group session labels Jan 10, 2023
@edwardchalstrey1
Copy link
Contributor Author

Duplicate issue: #460 - will close to avoid clutter

@edwardchalstrey1
Copy link
Contributor Author

edwardchalstrey1 commented Jan 31, 2023

@ots22 One thing that would be very handy would be if we could make it possible to do the following

Ideal version

data = load_dataset(<datasource url>)
model.predict(data)    # assuming this model var was already set up

Current version

as oppose to the intake version we have currently:

data_config = load_dataset(<datasource url>)
print([i for i in data_config.keys()])

choose a key... run to_dask .... and only then run model.predict

data = data_config.my_key().to_dask()
model.predict(data) 

@ots22
Copy link
Member

ots22 commented Aug 29, 2023

Consider native support for common cases, like 'zip file of images' (would close #482)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
co-working suitable for group session enhancement New feature or request
Projects
No open projects
Development

No branches or pull requests

3 participants