TypeError: run_mcmc_smoothlybrokenpowerlaw1D() got an unexpected keyword argument 'loga_i'
时间: 2023-10-06 10:11:29 浏览: 56
TypeError: Unexpected keyword argument passed to optimizer: learning_rate 解决方法
This error message suggests that the function `run_mcmc_smoothlybrokenpowerlaw1D()` was called with an unexpected keyword argument `loga_i`. This means that the function was not expecting to receive an argument with this name and is unable to process it.
To fix this error, you should check the documentation or source code of the function to see what arguments it expects and what their names are. Then, modify the function call to use the correct argument names and values.
阅读全文