Giter Club home page Giter Club logo

Comments (1)

GuillaumeLeclerc avatar GuillaumeLeclerc commented on July 17, 2024 7

Hello!

Thank you very much. There are many reasons but on the top of my head:

  • Single file vs many smaller files (less stress on the file system)
  • Using the knowledge about which samples will be needed in the future to start reading the data ahead of time and absorb the latency of slow storage
  • The use of threads instead of processes remove the need of any inter-process communication (shared memory etc...) and reduces memory consumption
  • Compilation of the CPU augmentations transforms in machine code at the start of training (JIT).
  • Copying the next batches while the compute is happening instead of simply asynchronously (but still on the critical path)
  • Ability to use to move augmentations to CPU or GPU depending on where is your bottleneck.
  • The use of pre-resized datasets
  • In the case of systems with a lot of RAM, leveraging operating system level caching to implicitly store the entire dataset in RAM
  • Being able to use alternative or a mix of different encoding for the data. JPEG can be slow to decode, if you have enough storage/RAM but not enough compute using uncompressed images might be faster, and FFCV enables that simply by switching a flag.

from ffcv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.