You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
H2O version, Operating System and Environment
H2O 3.46.0.3, Mac OS M1 chip. Running inside a vscode devcontainer.
Actual behavior
error stating:
h2o.exceptions.H2OResponseError: Server error water.exceptions.H2ONotFoundArgumentException:
Error: POST /3/ModelBuilders/xgboost not found
Request: POST /3/ModelBuilders/xgboost
Expected behavior
code functions and uses xgboost to train model
Steps to reproduce
Steps to reproduce the behavior (with working code on a sample dataset, if possible):
see code. Run any training sample
Additional context
Possibly because of the docker environment. running on the macos m1 chip. with the visualstudiocode is giving some sort of error.
different versions of java have been tried.
issue has been referenced here too: h2o/h2o#3039
vscode dev container as follows:
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
"installJupyterlab": true,
"version": "latest"
}
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip3 install --user wheel; pip3 install --user -r requirements.txt --no-deps; cp -n secrets_sample.json secrets.json",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
The text was updated successfully, but these errors were encountered:
H2O version, Operating System and Environment
H2O 3.46.0.3, Mac OS M1 chip. Running inside a vscode devcontainer.
Actual behavior
error stating:
when running
Expected behavior
code functions and uses xgboost to train model
Steps to reproduce
Steps to reproduce the behavior (with working code on a sample dataset, if possible):
see code. Run any training sample
Additional context
Possibly because of the docker environment. running on the macos m1 chip. with the visualstudiocode is giving some sort of error.
different versions of java have been tried.
issue has been referenced here too: h2o/h2o#3039
vscode dev container as follows:
The text was updated successfully, but these errors were encountered: