分配 numpy 数组的路径
我有一个图像作为 np 数组,我想将其传递给一个仅接受图像路径作为输入的模型。获取图像路径的最佳且最优化的方法是什么?
对于大量图像来说,在磁盘上写入似乎不太合理。有没有办法获得内存中的路径?
I have an image as an np array and I want to pass it to a model which just accepts the image path as the input. What is the best and most optimized way of getting a path for my image?
Writing on the disk doesn't seem reasonable for a large number of images. Is there a way to get a path on the memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个 tmpfs 文件系统(又名 RAM 磁盘),将 NumPy 数组保存为文件。这样它就不会执行任何实际的磁盘 I/O。
当然,对于现代 SSD,我怀疑您是否能够测量整个系统的加速情况。
Create a tmpfs filesystem (aka a RAM disk), save the NumPy array as a file there. This way it won't do any actual disk I/O.
Of course, with modern SSDs I doubt you'll measure any speedup in your overall system.