DQN agent training error: "One or more futures resulted in an error."

5 ビュー (過去 30 日間)
Muhammad Farhan
Muhammad Farhan 2023 年 1 月 19 日
回答済み: Satwik 2025 年 1 月 23 日 4:39
While traning a DQN agent an error message poped by Matlab. "One or more futures resulted in an error." Is it feature or futures and what is the solution? The dialog has title as "Invalid Setting".

回答 (1 件)

Satwik
Satwik 2025 年 1 月 23 日 4:39
Hi Muhammad,
The error message you are encountering in MATLAB, 'One or more futures resulted in an error', is indeed referring to 'futures' and not 'features'. In MATLAB, a 'future' is an object that represents a computation that is running asynchronously. This is often used in parallel computing or when tasks are executed in the background.
One way to approach resolving this issue is by making sure that the parallel pool set up correctly. This can be done by running the following command:
parpool
If there are any issues with your parallel pool, you can reset it using:
delete(gcp('nocreate'));
parpool;
Please feel free to share more details on the error message and the reproduction steps. This will enable the community to help you more effectively.
I hope this helps!

カテゴリ

Help Center および File ExchangeParallel Computing Fundamentals についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by