Skip to content

Commit

Permalink
add tree output back
Browse files Browse the repository at this point in the history
Signed-off-by: YunLiu <[email protected]>
  • Loading branch information
KumoLiu committed Sep 18, 2024
1 parent e0f70d5 commit 7a9d10a
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 3 deletions.
36 changes: 34 additions & 2 deletions bundle/03_mednist_classification_v2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,22 @@
"execution_count": 10,
"id": "00c84e2c-1709-4136-8612-87142026ac2e",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/usr/bin/tree\n",
"\u001b[01;34moutput/output_230911_164547\u001b[00m\n",
"├── log.txt\n",
"├── model_epoch=1.pt\n",
"├── model_epoch=2.pt\n",
"└── model_final_iteration=186.pt\n",
"\n",
"0 directories, 4 files\n"
]
}
],
"source": [
"!which tree && tree output/* || true"
]
Expand Down Expand Up @@ -869,7 +884,24 @@
"2024-09-18 08:26:46,706 - INFO - > bundle_root: './MedNISTClassifier_v2'\n",
"2024-09-18 08:26:46,706 - INFO - ---\n",
"\n",
"\n"
"\n",
"2023-09-11 16:57:12,519 - INFO - exported to file: ./MedNISTClassifier_v2/models/model.ts.\n",
"/usr/bin/tree\n",
"\u001b[01;34m./MedNISTClassifier_v2\u001b[00m\n",
"├── \u001b[01;34mconfigs\u001b[00m\n",
"│   ├── common.yaml\n",
"│   ├── inference.yaml\n",
"│   ├── logging.conf\n",
"│   ├── metadata.json\n",
"│   └── train.yaml\n",
"├── \u001b[01;34mdocs\u001b[00m\n",
"│   └── README.md\n",
"├── LICENSE\n",
"└── \u001b[01;34mmodels\u001b[00m\n",
" ├── model.pt\n",
" └── model.ts\n",
"\n",
"3 directories, 9 files\n"
]
},
{
Expand Down
36 changes: 35 additions & 1 deletion bundle/05_spleen_segmentation_lightning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,41 @@
"execution_count": 11,
"id": "c5ba337d-a5b0-47de-9ae2-1554a2cb4f86",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"/usr/bin/tree\n",
"\u001b[01;34mSpleenSegLightning\u001b[00m\n",
"├── \u001b[01;34mconfigs\u001b[00m\n",
"│ ├── common.yaml\n",
"│ ├── metadata.json\n",
"│ └── train.yaml\n",
"├── \u001b[01;34mdocs\u001b[00m\n",
"│ └── README.md\n",
"├── LICENSE\n",
"├── \u001b[01;34mlogs\u001b[00m\n",
"│ └── \u001b[01;34mlightning_logs\u001b[00m\n",
"│ └── \u001b[01;34mversion_0\u001b[00m\n",
"│ ├── \u001b[01;34mcheckpoints\u001b[00m\n",
"│ │ └── epoch=0-step=32.ckpt\n",
"│ ├── events.out.tfevents.1697764071.sie082-pc.29342.0\n",
"│ └── hparams.yaml\n",
"├── \u001b[01;34mmodels\u001b[00m\n",
"└── \u001b[01;34mscripts\u001b[00m\n",
" ├── __init__.py\n",
" ├── main.py\n",
" ├── model.py\n",
" └── \u001b[01;34m__pycache__\u001b[00m\n",
" ├── __init__.cpython-39.pyc\n",
" ├── main.cpython-39.pyc\n",
" └── model.cpython-39.pyc\n",
"\n",
"9 directories, 14 files\n"
]
}
],
"source": [
"!which tree && tree SpleenSegLightning || true"
]
Expand Down

0 comments on commit 7a9d10a

Please sign in to comment.