HackerTrans
TopNewTrendsCommentsPastAskShowJobs

thinxer

no profile record

Submissions

MTIA v1: Meta’s first-generation AI inference accelerator

ai.facebook.com
110 points·by thinxer·3 tahun yang lalu·44 comments

comments

thinxer
·2 tahun yang lalu·discuss
For “cloud-native” apps, JuiceFS is not needed.

S3 is not designed for intensive metadata operations, like listing, renaming etc. For these operations, you will need a somewhat POSIX-complaint system. For example, if you want to train on ImageNet dataset, the “canonical” way [1] is to extract the images and organize them into folders, class by class. The whole dataset is discovered by directory listing. This where JuiceFS shines.

Of course, if the dataset is really massive, you will mostly end-up with in-house solutions.

[1]: https://github.com/pytorch/examples/blob/main/imagenet/extra...