Skip to main content

No project description provided

Project description

Threaded File Loader

Github: ThreadedFileLoader

Multithreaded Python package for faster file loading in machine learning.

Installation

pip install ThreadedFileLoader

Usage:

Loading Image Files:

from ThreadedFileLoader.ThreadedFileLoader import *

instance = ThreadedImageLoader("path_to_/*.jpg")
instance.start_loading()
images = instance.loaded_objects
print(len(images))
print(images[0].shape)

Loading Text Files:

from ThreadedFileLoader.ThreadedFileLoader import *

instance = ThreadedTextLoader("path_to_/*.txt")
instance.start_loading()
images = instance.loaded_objects

Loading Custom File Formats

Threaded FileLoader can load different file types. This examples shows how the ThreadedTextLoader class overloads the ThreadedFileLoader class to load text files.

from ThreadedFileLoader.ThreadedFileLoader import *

class ThreadedTextLoader(ThreadedFileLoader):
    def object_loader(self, path):
      with open(path) as afile:
        data = afile.readlines()
        return data

instance = ThreadedTextLoader("path_to_/*.txt")
instance.start_loading()
texts = instance.loaded_objects

Machine Learning Example

Loading Dataset

import numpy as np

from ThreadedFileLoader.ThreadedFileLoader import *
from sklearn.cluster import KMeans


instance = ThreadedImageLoader("path_to_dataset/*.jpg")
instance.start_loading()
images = instance.loaded_objects
images = np.array(images)
images = images.reshape(len(images), -1)

kmeans = KMeans(n_clusters=10, random_state=0).fit(images)

print(kmeans.labels_)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ThreadedFileLoader-1.0.0.11.tar.gz (2.6 kB view details)

Uploaded Source

Built Distribution

ThreadedFileLoader-1.0.0.11-py3-none-any.whl (3.0 kB view details)

Uploaded Python 3

File details

Details for the file ThreadedFileLoader-1.0.0.11.tar.gz.

File metadata

  • Download URL: ThreadedFileLoader-1.0.0.11.tar.gz
  • Upload date:
  • Size: 2.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.22.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.7

File hashes

Hashes for ThreadedFileLoader-1.0.0.11.tar.gz
Algorithm Hash digest
SHA256 b8b7177931976a583bd3fb938f5e5273f18444fe69a7a77ead2ce7760bcbecdd
MD5 8a155e3b63d6e6e2156ca507df12428c
BLAKE2b-256 b9b1a19b0450aa8724f10cd3fd462f407122927ccdeced3e9aadd6c37b2a32b5

See more details on using hashes here.

File details

Details for the file ThreadedFileLoader-1.0.0.11-py3-none-any.whl.

File metadata

  • Download URL: ThreadedFileLoader-1.0.0.11-py3-none-any.whl
  • Upload date:
  • Size: 3.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.22.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.7.7

File hashes

Hashes for ThreadedFileLoader-1.0.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 cedf88ce64668607d21c85b4a363847682352cec6660b790e79ddb7df84d56a9
MD5 efa9430f39cee0e31292be2b7b51d5b2
BLAKE2b-256 d0f8db83cadba00cde141d32a37aa975fb9ff5b0178543351e5a661f688ea349

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page