跳转到主要内容

ISIC挑战赛评分

项目描述

ISIC:皮肤病变分析用于黑色素瘤检测评分

PyPI Docker Build Status

ISIC挑战赛的自动化评分代码(http://challenge.isic-archive.com)

安装

Python

需要Python版本 >= 3.8。

pip install isic-challenge-scoring

Docker

docker pull isic/isic-challenge-scoring:latest

使用

Python

分割(任务1)

isic-challenge-scoring segmentation /path/to/ISIC_GroundTruth/ /path/to/ISIC_predictions/

分类(任务3)

isic-challenge-scoring classification /path/to/ISIC_GroundTruth.csv /path/to/ISIC_prediction.csv

Docker

由于应用程序需要读取文件,Docker必须在容器内挂载它们;以下示例使用--mount防止意外创建不存在的宿主路径

分割(任务1)

docker run \
  --rm \
  --mount type=bind,source="/path/to/ISIC_GroundTruth/",destination=/root/gt/,readonly \
  --mount type=bind,source="/path/to/ISIC_predictions/",destination=/root/pred/,readonly \
  isic/isic-challenge-scoring:latest \
  segmentation \
  /root/gt/ \
  /root/pred/

分类(任务3)

docker run \
  --rm \
  --mount type=bind,source="/path/to/ISIC_GroundTruth.csv",destination=/root/gt.csv,readonly \
  --mount type=bind,source="/path/to/ISIC_prediction.csv",destination=/root/pred.csv,readonly \
  isic/isic-challenge-scoring:latest \
  classification \
  /root/gt.csv \
  /root/pred.csv

项目详情


下载文件

下载适合您平台的文件。如果您不确定选择哪个,请了解更多关于 安装包 的信息。

源代码分发

isic-challenge-scoring-5.6.0.tar.gz (17.9 kB 查看哈希值)

上传时间 源代码

构建分发

isic_challenge_scoring-5.6.0-py3-none-any.whl (20.6 kB 查看哈希值)

上传时间 Python 3

由以下支持