Skip to content

Repository files navigation

Cloud Array

cloud-array is an open-source Python library for storing and streaming large Numpy Arrays on local file systems and major cloud providers CDNs. It automatically chunks a large array of data into arbitrary chunks sizes and uploads them into the targeted direcotry.

importnumpyasnpfromcloud_arrayimportCloudArrayshape= (10000, 100, 100)
chunk_shape= (10, 10, 10)
f=np.memmap(
'memmapped.dat',
dtype=np.float32,
mode='w+',
shape=shape
)
array=CloudArray(
chunk_shape=chunk_shape,
array=f,
url="s3://example_bucket/dataset0"
)
array.save()
print(array[:100,:100,:100])

Links

About

cloud-array is an open-source Python library for storing and streaming large Numpy Arrays on local file systems and major cloud proviers CDNs.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages