D:/paper/QQQQ/1.py:115: DeprecationWarning: KerasRegressor is deprecated, use Sci-Keras (https://github.com/adriangb/scikeras) instead. See https://www.adriangb.com/scikeras/stable/migration.html for help migrating. model = KerasRegressor(build_fn=build_fn, **params, epochs=50, batch_size=10, verbose=0)
时间: 2023-12-25 10:03:35 浏览: 182
这是一个警告信息,提示您使用的KerasRegressor已经被弃用,建议使用Sci-Keras的替代版本。警告还提供了迁移指南的链接,以帮助您进行迁移。具体来说,您可以访问链接 https://www.adriangb.com/scikeras/stable/migration.html 获取迁移帮助。
在您的代码中,您可以考虑将KerasRegressor替换为Sci-Keras中的相应类,以避免使用已被弃用的库。这样可以确保您的代码在未来的版本中仍然能够正常运行,并且能够使用最新的功能和改进。
相关问题
C:\Users\lenovo\AppData\Local\Temp\ipykernel_17504\2728044908.py:1: DeprecationWarning: KerasClassifier is deprecated, use Sci-Keras (https://github.com/adriangb/scikeras) instead. See https://www.adriangb.com/scikeras/stable/migration.html for help migrating. clf = KerasClassifier(build_fn=create_model)
这个警告是因为您正在使用 `KerasClassifier`,但是它已经被弃用了。如果您想继续使用 `KerasClassifier`,可以忽略这个警告,但是建议您使用替代方案,例如 `Sci-Keras`。
如果您想迁移到 `Sci-Keras`,您可以参考链接中提供的迁移指南。请注意,您需要安装 `scikeras` 库,并且根据您的具体代码,需要进行一些更改。
WARNING: Implying --no-binary=:all: due to the presence of --build-option / --global-option / --install-option. Consider using --config-settings for more flexibility. DEPRECATION: --install-option is deprecated because it forces pip to use the 'setup.py install' command which is itself deprecated. pip 23.1 will enforce this behaviour change. A possible replacement is to use --config-settings. Discussion can be found at https://github.com/pypa/pip/issues/11358 DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at https://github.com/pypa/pip/issues/11453 Collecting git+https://github.com/vallis/libstempo.git Cloning https://github.com/vallis/libstempo.git to /tmp/pip-req-build-yxnze2mi Running command git clone --filter=blob:none --quiet https://github.com/vallis/libstempo.git /tmp/pip-req-build-yxnze2mi
您好!欢迎来到CSDN知道!您的问题是关于使用pip克隆GitHub上的库到本地的问题。对于这个问题,您可以尝试以下步骤:
1. 确认您已经安装了Git工具。如果没有安装,请先安装Git。
2. 打开命令行终端,并导航到您想要克隆库的目录。
3. 运行以下命令进行克隆:
```
git clone https://github.com/vallis/libstempo.git
```
这将克隆库到当前目录下的一个名为"libstempo"的文件夹中。
完成上述步骤后,您将在本地成功克隆GitHub上的库。希望对您有所帮助!如果您有任何其他问题,请随时提问。
阅读全文