- Description: MediaStorageSOPClassUID Tag: (0x0002,0x0002) Level: ERROR
- Description: MediaStorageSOPInstanceUID Tag: (0x0002,0x0003) Level: ERROR
- Description: TransferSyntaxUID Tag: (0x0002,0x0010)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM tensorflow/tensorflow:2.2.0-gpu-jupyter | |
RUN python -m pip install --upgrade pip | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import warnings | |
import traceback | |
import smtplib | |
from email.mime.text import MIMEText | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.application import MIMEApplication | |
import getpass | |
# email_server coule be email_server+":"+port |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import uuid | |
import time | |
import numpy as np | |
import asyncio | |
import aiofiles | |
from aiofiles.os import wrap | |
# make sure any io operations use the async version |
server side:
ref. https://docs.nvidia.com/clara/tlt-mi/
- get container
export workspace=/tmp/clara-experiments
mkdir -p $workspace
export dockerImage=nvcr.io/nvidia/clara-train-sdk:v3.1.01
docker pull $dockerImage
docker run --gpus=1 --shm-size=1G --ulimit memlock=-1 --ulimit stack=67108864 -it --rm -v $workspace:/workspace/clara-experiments $dockerImage /bin/bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
images/* | |
images.zip | |
itk.nii.gz | |
ok/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
autotools-dev \ | |
build-essential \ | |
ca-certificates \ | |
cmake \ | |
git \ | |
wget \ | |
unzip \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR) | |
if(POLICY CMP0020) | |
cmake_policy(SET CMP0020 NEW) | |
endif() | |
PROJECT(foo) | |
find_package(VTK REQUIRED) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**/.ipynb_checkpoints/* | |
ok.png | |
ok.nii.gz | |
workdir/* |