We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, the env variable CLAIMED_DATA_PATH is mounted to data in the python working directory.
CLAIMED_DATA_PATH
data
First, this does not work for R scripts because of the different working directory.
Second, users might want to mount different dirs that do not contain data, e.g. models or output.
models
output
Therefore, it would be easier to make it configureable similar to docker:
docker
-v `pwd`/data:/home/docker/data -v `pwd`/model:/home/docker/model -v `pwd`/output:/home/docker/output
We might want to automate the different working dirs in Python and R.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the env variable
CLAIMED_DATA_PATH
is mounted todata
in the python working directory.First, this does not work for R scripts because of the different working directory.
Second, users might want to mount different dirs that do not contain data, e.g.
models
oroutput
.Therefore, it would be easier to make it configureable similar to
docker
:We might want to automate the different working dirs in Python and R.
The text was updated successfully, but these errors were encountered: