Hi I attempet to Neural Network in Python and i codding neural Network but ı cant use tabulate I tryed download tabulate but give me below error :
['CAGR', ret_train_nn, ret_test_nn],
NameError: name 'ret_train_nn' is not defined
i use mac maybe maybe ı diidn download tabulate for mac .
Thanks
Hello Aytac,
You can use "pip install tabulate" in the terminal/cmd or "!pip install tabulate" in Jupyter to download tabulate if it is already not installed.
Also, "ret_train_nn" the variable hasn't been set before. Make sure to run all cells before this cell. This should be a defined variable before you tabulate it.