Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
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
ICESat-2 ML tutorial - photon classification on ATL07 sea ice data #17
ICESat-2 ML tutorial - photon classification on ATL07 sea ice data #17
Changes from 7 commits
c8b1690
0c892ed
18336b9
5db2d77
561529c
6836bcd
d616d77
1858273
f445e25
fce139d
770bb83
1a11529
87cf493
1a42bcc
d599a37
bdccda1
395982e
2a0ae41
c3cace6
db55b60
aac4747
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Continuing from #17 (comment), this is the current error:
Not sure if there's a way to pass auth credentials to GitHub Actions and/or Netlify build so that this line works?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can definitely add secrets for
EARTHDATA_USERNAME
andEARTHDATA_PASSWORD
, which would enableearthdata
to login during actions. However GitHub actions run on azure, so s3 access isn't available. I think we'd have to build a self-hosted runner that deploys on AWS.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we could execute these notebooks on a remotely booted CryoCloud user server. I think all the pieces exist to do this nowadays? @yuvipanda I saw this relevant issue NASA-IMPACT/veda-jupyterhub#46 as I was exploring your latest awesome 2i2c tech including https://github.com/yuvipanda/jupyter-sshd-proxy. Is there a straightforward way to start a user server via CI? Then you'd just have to fire up an ssh connection, execute a notebook, copy and commit the rendered version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another option is if CryoCloud had a BinderHub, we could follow Project Pythia and use
execute_notebooks: binder
in_config.yml
(Example here, xref https://discourse.pangeo.io/t/statement-of-need-integrating-jupyterbook-and-jupyterhubs-via-ci/2705/14). The ssh option would be pretty cool to get working though!There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@weiji14 For now I recommend executing the notebook on CryoCloud, saving with outputs and adding an entry to not execute it in CI here:
website-2024/book/_config.yml
Lines 38 to 39 in 3958f02