Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
characat0 committed Jun 10, 2024
2 parents 0676dcc + b2602aa commit b544205
Show file tree
Hide file tree
Showing 109 changed files with 8,370 additions and 3,327 deletions.
43 changes: 43 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "JuliaDeepLearning",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:focal",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/nvidia-cuda:1": {},
"ghcr.io/julialang/devcontainer-features/julia:1": {
"channel": "1.9"
},
"ghcr.io/devcontainers/features/conda:1": {},
"ghcr.io/iterative/features/dvc:1": {}
// "ghcr.io/iterative/features/nvtop:1": {}
},
"runArgs": [
"--gpus",
"all"
],
"containerEnv": {
"JULIA_NUM_THREADS": "auto"
},
"mounts": [
// "type=volume,src=julia-depot,dst=/home/vscode/.julia",
"type=bind,src=${localEnv:HOME}/.aws,dst=/home/vscode/.aws"
],

// 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": "julia -e 'import Pkg; Pkg.activate(\".\"); Pkg.instantiate(); Pkg.precompile()'"

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
5 changes: 5 additions & 0 deletions .dvc/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[core]
remote = cloud
autostage = true
['remote "cloud"']
url = s3://nowcastinghuascaran
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
################################################################################
# DrWatson Project Structure #
# DrWatson Project Structure #
################################################################################

# Folders to ignore - files may be too large, too many, etc. NOTE: EDIT IF NEEDED.
data
videos
plots
_research
dataset

################################################################################
# Data files #
Expand Down Expand Up @@ -36,8 +35,6 @@ deps/src/
docs/build/
docs/site/

# Generated Manifest
Manifest.toml

################################################################################
# Jupyter Notebook #
Expand Down Expand Up @@ -599,3 +596,9 @@ cython_debug/
#.idea/

notebooks/*
.aws
**/*.tif
**/*.nc
**/*.jld2


Loading

0 comments on commit b544205

Please sign in to comment.