【问题标题】:Tensorflow Lite, Image size is zero errorTensorflow Lite,图像大小为零错误
【发布时间】:2022-01-11 14:21:24
【问题描述】:

其实我的问题很简单。我想在 tensorflow lite 模型中使用我自己的数据。所以,我写了这行代码:

root_path = r"C:\Users\90531\Desktop\dataset\b"
image_path = os.path.join(os.path.dirname(root_path), '1602854451425')

data = DataLoader.from_folder(image_path)

另外,这是我遇到的错误:

  File "C:\Users\90531\AppData\Roaming\Python\Python39\site-packages\tensorflow_examples\lite\model_maker\core\data_util\image_dataloader.py", line 73, in from_folder
    raise ValueError('Image size is zero')

ValueError: Image size is zero

【问题讨论】:

    标签: python tensorflow tensorflow2.0 tensorflow-lite


    【解决方案1】:

    Dataloader 无法推断出图像的标签时,就会发生这种情况。图片应根据所属的类分为子文件夹:

    from tflite_model_maker.image_classifier import DataLoader
    import seedir as sd
    
    image_path = '/content/images'
    sd.seedir(image_path, style='spaces', indent=4, anystart='- ')
    data = DataLoader.from_folder(image_path)
    
    - images/
        - class1/
            - result_image.png
        - class2/
            - result_image1.png
    
    INFO:tensorflow:Load image with size: 2, num_label: 2, labels: class1, class2.
    

    【讨论】:

    • 谢谢您,“图片大小为零”错误已删除。
    • 您好,先生,又是我一次。我写了这些代码行,但它仍然给出同样的错误。你能帮我吗? (path = r"C:\Users\90531\Desktop\dataset\b" sd.seedir(path, style='spaces', indent=4, anystart='-') data = DataLoader.from_folder(path)?)
    猜你喜欢
    • 1970-01-01
    • 2021-06-10
    • 2021-10-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-05-07
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多