When I activate a virtual environment on my windows PC I get this message
set /p KERAS_BACKEND= 0<temp.txt
del temp.txt
python -c "import keras" 1>nul 2>&1
if errorlevel 1 (
ver 1>nul
set "KERAS_BACKEND=theano"
python -c "import keras" 1>nul 2>&1
)
I could able to open my environment and work in it , but I would like to know why do I get this message
Thank you