我有一个python程序,我试图计算它的内存使用和运行时间。当我用kernprof -l -v运行程序时,我只得到memory_profiler的输出。它确实说line_profiler在外部文件中写入了输出,但在终端和文件中都没有输出。如果我使用mprof run分别运行程序,然后使用kernprof -l -v,而不导入内存分析器,则输出在那里,并且我能够查看时间结果。是否有可能使它们在同一执行过程中工作?我的代码:
@profile
def ARIMA_forecast(series, df):
X = series.values
size = int(len(X) * 0.66)
train, test = X[0:size], X[size:len(X)]
history = [x for x in train]
predictions = list()
for t in range(len(test)):
model = ARIMA(history, order=(4, 1, 0))
model_fit = model.fit(disp=0)
output = model_fit.forecast()
yhat = output[0]
predictions.append(yhat)
obs = test[t]
history.append(obs)
print('predicted=%f, expected=%f' % (yhat, obs))
# evaluate forecasts
rmse = sqrt(mean_squared_error(test, predictions))
print('Test RMSE: %.3f' % rmse)
# plot forecasts against actual outcomes
plt.plot(series, label='Training data')
plt.plot(series[size:len(X)].index, predictions, color='blue', label='Predicted Price')
plt.plot(series[size:len(X)].index, test, color='red', label='Actual Price')
plt.legend()
plt.show()
df = pd.read_csv('MSFT.csv', header=0, index_col=0, parse_dates=True)
series = df['Adj Close']
ARIMA_forecast(series, df)
``
据我所知,Scalene是唯一一个同时分析Python程序的CPU执行时间和内存(以及许多其他东西)的分析器。它也比memory_profiler
快得多。免责声明:我是Scalene的主要作者。让我知道进展如何!