我尝试在Amazon Web Services(AWS)上使用Please use one of the following commands to start the required environment with the framework of your choice:
for MXNet(+Keras1) with Python3 (CUDA 9) _____________________ source activate mxnet_p36
for MXNet(+Keras1) with Python2 (CUDA 9) _____________________ source activate mxnet_p27
for TensorFlow(+Keras2) with Python3 (CUDA 8) ________________ source activate tensorflow_p36
。当您登录时,您会收到如下消息(我在此处显示部分内容):
source activate tensorflow_p36
所以,如果我想运行上面显示的最后一个环境,我理解的是运行以下命令:
-bash: activate: No such file or directory
但是当我运行命令时,我得到以下内容:
mutate_transform <- function(x){
require(caret)
trans <- preProcess(data.frame(x), c("BoxCox", "center", "scale"))
predict(trans, data.frame(x))$x
}
这也适用于其他环境。这是为什么?我该怎么做才能解决这个问题?
感谢。