- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题可能已经被问过好几次了,但我无法解决这个错误。我的 M1 Mac 上安装了 pillow、imageio 和其他库。但是,当我在代码下方运行时,仍然出现错误。
注意:我使用 miniforge 创建了我的环境。
代码:image = imread(source_path+'/'+ t[文件夹 + (batch*batch_size)].strip().split(';')[0]+'/'+imgs[item]).astype(np.float32)
如果需要任何其他信息来解决此问题,请在此处添加。
错误:
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Input In [11], in <cell line: 1>()
----> 1 model.fit(train_generator, steps_per_epoch=steps_per_epoch, epochs=num_epochs, verbose=1,
2 callbacks=callbacks_list, validation_data=val_generator,
3 validation_steps=validation_steps, class_weight=None, workers=1, initial_epoch=0)
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/tensorflow/python/keras/engine/training.py:1133, in Model.fit(self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, steps_per_epoch, validation_steps, validation_batch_size, validation_freq, max_queue_size, workers, use_multiprocessing)
1127 self._cluster_coordinator = cluster_coordinator.ClusterCoordinator(
1128 self.distribute_strategy)
1130 with self.distribute_strategy.scope(), \
1131 training_utils.RespectCompiledTrainableState(self):
1132 # Creates a `tf.data.Dataset` and handles batch and epoch iteration.
-> 1133 data_handler = data_adapter.get_data_handler(
1134 x=x,
1135 y=y,
1136 sample_weight=sample_weight,
1137 batch_size=batch_size,
1138 steps_per_epoch=steps_per_epoch,
1139 initial_epoch=initial_epoch,
1140 epochs=epochs,
1141 shuffle=shuffle,
1142 class_weight=class_weight,
1143 max_queue_size=max_queue_size,
1144 workers=workers,
1145 use_multiprocessing=use_multiprocessing,
1146 model=self,
1147 steps_per_execution=self._steps_per_execution)
1149 # Container that configures and calls `tf.keras.Callback`s.
1150 if not isinstance(callbacks, callbacks_module.CallbackList):
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/tensorflow/python/keras/engine/data_adapter.py:1364, in get_data_handler(*args, **kwargs)
1362 if getattr(kwargs["model"], "_cluster_coordinator", None):
1363 return _ClusterCoordinatorDataHandler(*args, **kwargs)
-> 1364 return DataHandler(*args, **kwargs)
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/tensorflow/python/keras/engine/data_adapter.py:1154, in DataHandler.__init__(self, x, y, sample_weight, batch_size, steps_per_epoch, initial_epoch, epochs, shuffle, class_weight, max_queue_size, workers, use_multiprocessing, model, steps_per_execution, distribute)
1152 adapter_cls = select_data_adapter(x, y)
1153 self._verify_data_adapter_compatibility(adapter_cls)
-> 1154 self._adapter = adapter_cls(
1155 x,
1156 y,
1157 batch_size=batch_size,
1158 steps=steps_per_epoch,
1159 epochs=epochs - initial_epoch,
1160 sample_weights=sample_weight,
1161 shuffle=shuffle,
1162 max_queue_size=max_queue_size,
1163 workers=workers,
1164 use_multiprocessing=use_multiprocessing,
1165 distribution_strategy=ds_context.get_strategy(),
1166 model=model)
1168 strategy = ds_context.get_strategy()
1170 self._current_step = 0
`enter code here`File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/tensorflow/python/keras/engine/data_adapter.py:809, in GeneratorDataAdapter.__init__(self, x, y, sample_weights, workers, use_multiprocessing, max_queue_size, model, **kwargs)
805 super(GeneratorDataAdapter, self).__init__(x, y, **kwargs)
807 # Since we have to know the dtype of the python generator when we build the
808 # dataset, we have to look at a batch to infer the structure.
--> 809 peek, x = self._peek_and_restore(x)
810 peek = self._standardize_batch(peek)
811 peek = _process_tensorlike(peek)
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/tensorflow/python/keras/engine/data_adapter.py:866, in GeneratorDataAdapter._peek_and_restore(x)
864 @staticmethod
865 def _peek_and_restore(x):
--> 866 peek = next(x)
867 return peek, itertools.chain([peek], x)
Input In [4], in generator(source_path, folder_list, batch_size)
16 imgs = os.listdir(source_path+'/'+ t[folder + (batch*batch_size)].split(';')[0]) # read all the images in the folder
17 for idx,item in enumerate(img_idx): # Iterate iver the frames/images of a folder to read them in
---> 18 image = imread(source_path+'/'+ t[folder + (batch*batch_size)].strip().split(';')[0]+'/'+imgs[item]).astype(np.float32)
20 #crop the images and resize them. Note that the images are of 2 different shape
21 #and the conv3D will throw error if the inputs in a batch have different shapes
22 # Let us resize all the images.Let's use PIL.Image.NEAREST (use nearest neighbour) resampling filter.
23 resized_image = resize(image,(y,z)) ##default resample=1 or 'P' which indicates PIL.Image.NEAREST
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/imageio/core/functions.py:206, in imread(uri, format, **kwargs)
202 raise TypeError('Invalid keyword argument "mode", '
203 'perhaps you mean "pilmode"?')
205 # Get reader and read first
--> 206 reader = read(uri, format, 'i', **kwargs)
207 with reader:
208 return reader.get_data(0)
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/imageio/core/functions.py:123, in get_reader(uri, format, mode, **kwargs)
121 format = formats[format]
122 else:
--> 123 format = formats.search_read_format(request)
124 if format is None:
125 raise ValueError('Could not find a format to read the specified file '
126 'in mode %r' % mode)
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/imageio/core/format.py:673, in FormatManager.search_read_format(self, request)
671 # Select the first that can
672 for format in selected_formats:
--> 673 if format.can_read(request):
674 return format
676 # If no format could read it, it could be that file has no or
677 # the wrong extension. We ask all formats again.
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/imageio/core/format.py:188, in Format.can_read(self, request)
183 def can_read(self, request):
184 """ can_read(request)
185
186 Get whether this format can read data from the specified uri.
187 """
--> 188 return self._can_read(request)
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/imageio/plugins/pillow.py:97, in PillowFormat._can_read(self, request)
96 def _can_read(self, request):
---> 97 Image = self._init_pillow()
98 if request.mode[1] in (self.modes + '?'):
99 if self.plugin_id in Image.OPEN:
File ~/miniforge3/envs/tensorflow/lib/python3.9/site-packages/imageio/plugins/pillow.py:81, in PillowFormat._init_pillow(self)
79 import PIL
80 if not hasattr(PIL, 'PILLOW_VERSION'): # pragma: no cover
---> 81 raise ImportError('Imageio Pillow requires '
82 'Pillow, not PIL!')
83 from PIL import Image
84 self._Image = Image
ImportError: Imageio Pillow requires Pillow, not PIL!
最佳答案
我知道了以下决议。它对我有用。
这是 imageio 的一个问题,已于 2018 年 4 月解决:https://github.com/imageio/imageio/pull/336
请更新到 imageio 2.4.0 或更新版本。
关于python - ImportError : Imageio Pillow requires Pillow, 不是 PIL!在 M1 Mac 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72240791/
更新到 Xcode 12.2 后,由于与 Apple Silicon 相关的链接错误,我的项目开始无法编译。我似乎已经修复了大部分问题,但是一个构建静态链接框架的子项目给我带来了问题。然而,具有明显相
我有一台旧的 MacBook Pro,我在其中制作了两个应用程序并提交到应用程序商店。所以基本上签名身份在该机器的钥匙串(keychain)中。在 Mavericks 升级后,我不得不从那台计算机转移
我正在 MAC OSX 10.6 上编写一个示例应用程序,其 gcc 版本为 4.2。我正在使用 gcc 4.2 版编译应用程序。它在同一台机器上工作正常,但在 MAC OSX 10.5 (gcc 4
这是我的简单 mac 地址生成器: private String randomMACAddress(){ Random rand = new Random(); byte[] macA
我一直在寻找一种将十进制 MAC 地址转换为十六进制地址的方法。 例如 170.187.204.0.17.34至AA:BB:CC:00:11:22 . 致Convert HEX to Decimal
我想使用 UISceneSession 的委托(delegate)方法当用户将注意力从应用程序(窗口)移开,然后又回到应用程序(窗口)时,生命周期有助于通知我的 Mac Catalyst 应用程序。
我在签署 Mac 应用程序安装程序时遇到问题,我计划在 Mac 应用商店之外分发该应用程序。我正在使用开发人员安装程序证书来签署应用程序,但它给出了一些错误。下面是我用来签署应用程序的命令。 prod
Mac Catalyst 允许调整窗口大小,有没有办法为 Mac Catalyst 应用程序提供最小窗口大小? 最佳答案 只需将以下代码块添加到您的 application:didFinishLaun
这是一个非常理论性的问题,但对我来说很安静,即我如何进行下一步。 我正在开发一个SwiftUI MacOS应用程序,用户可以在其中上传自己的文件。元数据将存储在CoreData中,而我将文件手动存储在
滑动删除在 maccatalyst 中不起作用。相同的代码在 iPad 上运行良好。 在 maccatalyst 中未调用 UITableview trailingSwipeActionsConfig
我有两台 Mac,在进行 iPad 开发时,如果可以让另一台 Mac 启动模拟器并在构建完成后加载应用程序,我很感兴趣。 如果 iPad 应用程序在一台 Mac 屏幕和 Xcode 的模拟器中运行,所
我有一个用 objective-c 开发的 mac 应用程序。cpp 中还有另一个命令行中间应用程序,它是 native 主机应用程序,用于接收来自 chrome 扩展的消息。每当中间应用程序从扩展程
是否可以使用来自 Comodo 或 Thawte 的代码签名证书来签署应用程序并通过 Gatekeeper,或者我需要为此目的拥有 Mac 开发者订阅? 最佳答案 您必须是 Mac Developer
我正在使用 C++ 和 OpenGL/SDL 编写一个游戏,使用 Visual Studio 作为我的 IDE。我没有 Mac,甚至对这个平台都不熟悉。但我还是想发布给 Mac 用户。 我有三个问题。
我想将 MAC 地址 00163e2fbab7(存储为字符串)转换为其字符串表示形式 00:16:3e:2f:ba:b7。最简单的方法是什么? 最佳答案 使用一种完全迂回的方法来利用现有的一次将两个十
无法连接到Mac上的MySQL工作台。我收到以下错误:无法连接,服务器可能未运行。无法连接到‘127.0.0.1’上的MySQL服务器(61)如有帮助,将不胜感激。。谢谢!
我已经搜索了很长时间,似乎无法找到这个问题的答案。在 SO 上只找到两个问题/答案,但他们仍然没有回答这个问题 ( https://stackoverflow.com/search?q=netcore
我们在 Docker for Mac 中有一个 LoadBalancer 真是太酷了。 我对创建的端口有疑问: apiVersion: v1 kind: Service metadata: nam
我有一个我一直在从事的小型开源 OSX 项目,我想在 App Store 之外分发。 随着即将发布的 Mountain Lion,我想提供一个证书,以减少安装过程中的痛苦。 使用 App Store,
我的一台 Mac 没有互联网连接。我需要使用 docker pull。我的想法是,我将在我的一台具有互联网连接的 Mac 中使用 docker pull,然后将其复制到我没有互联网连接的 Mac。如何
我是一名优秀的程序员,十分优秀!