Repository will be updated soon after arXiv preprint release
This repository serves as the official codebase for the paper:
OneNet: A Channel-Wise 1D Convolutional U-Net
Sanghyun Byun, Kayvan Shah, Ayushi Gang, Christopher Apton, Jacob Song and Woo Seong Chung
Channel-Wise 1D convolutional encoder that retains U-Net’s accuracy while enhancing its suitability for edge applications by halving the model parameters.
11/7/2024: Project Repo Initialized
11/22/2024: Initial Model Code Uploaded
Environment (model has not been tested on other environments)
- Linux
- Python 3.12
- CUDA 12.1
Please set the environment with
export VENV_DIR=<YOUR-VENV>
export NAME=SegOne
python -m venv $VENV_DIR/$NAME
source $VENV_DIR/$NAME/bin/activate
For general use
pip install -r requirements.txt
For development use, do an editable installation locally to avoid importing issues
pip install -e . --extra-index-url https://download.pytorch.org/whl/cu121
- MSD Brain/Heart/Lung
- Oxford PET
- Pascal VOC
- COCO
If you find our work useful in your research, please consider citing our paper:
@misc{onenet-2024,
title={OneNet: A Channel-Wise 1D Convolutional U-Net},
author={Sanghyun Byun and Kayvan Shah and Ayushi Gang and Christopher Apton and Jacob Song and Woo Seong Chung},
archivePrefix={arXiv},
eprint={2411.09838},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2411.09838},
month={November},
year={2024},
}
- Sanghyun Byun |
MS in Computer Science @ USC
,AI Partner @ LG Electronics
- Kayvan Shah |
MS in Applied Data Science @ USC
- Ayushi Gang |
MS in Computer Science @ USC
- Christopher Apton |
MS in Applied Data Science @ USC
- Jacob Song |
Principal Researcher @ LG Electronics
- Woo Seong Chung |
Principal Researcher @ LG Electronics
We thank Professor Yan Liu
at the University of Southern California
for guidance.
This project is licensed under the CC-BY-4.0
License. See the LICENSE file for details.