├── .DS_Store ├── .gitignore ├── CurriculumLib.py ├── License.md ├── README.md ├── Sandbox.py ├── __init__.py ├── analysis ├── KLvsLogSoftMax.py ├── ellipse_projections.py ├── ellipse_sanity.py ├── ellipse_tester.py ├── pixelStats.py ├── plotLatent.py └── temp.py ├── args.py ├── curObjects ├── createDataloaders_allvsone.py ├── createDataloaders_baseline.py ├── createDataloaders_leaveoneout.py ├── createDataloaders_pretrained.py ├── createDataloaders_random.py └── datasetSelections.py ├── data_augment.py ├── dataset_generation ├── ExtractFuthl.py ├── ExtractLPW.py ├── ExtractNVGaze.py ├── ExtractOpenEDS_seg.py ├── ExtractPupilNet.py ├── ExtractRITEyes_general.py ├── ExtractRITEyes_nvgaze.py ├── ExtractRITEyes_openeds.py ├── ExtractSantini.py ├── ExtractUnityEyes.py ├── LPW_status.out ├── OpenEDS_status.out ├── PN_status.out ├── ProcessDatasets.sh ├── convert_fuhl_videos.py └── fuhl_status.out ├── evaluate_ellseg.py ├── extern ├── __init__.py └── locating-objects-without-bboxes │ ├── .gitignore │ ├── CHANGELOG.md │ ├── COPYRIGHT.txt │ ├── README.md │ ├── environment.yml │ ├── object-locator │ ├── __init__.py │ ├── __main__.py │ ├── argparser.py │ ├── bmm.py │ ├── checkpoints │ │ └── .gitignore │ ├── data.py │ ├── data_plant_stuff.py │ ├── find_lr.py │ ├── get_image_size.py │ ├── locate.py │ ├── logger.py │ ├── losses.py │ ├── make_metric_plots.py │ ├── metrics.py │ ├── metrics_from_results.py │ ├── models │ │ ├── __init__.py │ │ ├── unet_model.py │ │ ├── unet_parts.py │ │ └── utils.py │ ├── paint.py │ ├── train.py │ └── utils.py │ ├── scripts_dataset_and_results │ ├── generate_csv.py │ ├── parseResults.py │ └── spacing_stats_to_csv.py │ └── setup.py ├── figures ├── EpSegvsElSeg.py ├── dataset_info.tgn ├── draw.io │ ├── Enc_Dec.drawio │ └── Tiramisu.drawio ├── ellseg_openeds_op.gif ├── figures.ras └── promotional_image.jpg ├── helperfunctions.py ├── loss.py ├── maintainance ├── copyCheckpoints.py └── old_code │ └── createDataloaders.py ├── modelSummary.py ├── models ├── RITnet_v1.py ├── RITnet_v2.py ├── RITnet_v3.py ├── RITnet_v4.py ├── RITnet_v5.py ├── RITnet_v6.py ├── RITnet_v7.py ├── __init__.py ├── __pycache__ │ ├── RITnet_v2.cpython-35.pyc │ ├── RITnet_v2.cpython-36.pyc │ ├── RITnet_v2.cpython-37.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-37.pyc └── deepvog_pytorch.py ├── pytorchtools.py ├── rc_launch_scripts ├── runRC_allTests.sh ├── runRC_allvsone.sh ├── runRC_disentangle.sh └── runRC_testCode.sh ├── requirements.txt ├── runLocal.sh ├── test.py ├── train.py ├── utils.py └── weights ├── Fuhl.git_ok ├── LPW.git_ok ├── all.git_ok ├── nvgaze.git_ok ├── openeds.git_ok ├── pupilnet.git_ok └── riteyes.git_ok /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/.gitignore -------------------------------------------------------------------------------- /CurriculumLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/CurriculumLib.py -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/README.md -------------------------------------------------------------------------------- /Sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/Sandbox.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/KLvsLogSoftMax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/KLvsLogSoftMax.py -------------------------------------------------------------------------------- /analysis/ellipse_projections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/ellipse_projections.py -------------------------------------------------------------------------------- /analysis/ellipse_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/ellipse_sanity.py -------------------------------------------------------------------------------- /analysis/ellipse_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/ellipse_tester.py -------------------------------------------------------------------------------- /analysis/pixelStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/pixelStats.py -------------------------------------------------------------------------------- /analysis/plotLatent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/plotLatent.py -------------------------------------------------------------------------------- /analysis/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/analysis/temp.py -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/args.py -------------------------------------------------------------------------------- /curObjects/createDataloaders_allvsone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/curObjects/createDataloaders_allvsone.py -------------------------------------------------------------------------------- /curObjects/createDataloaders_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/curObjects/createDataloaders_baseline.py -------------------------------------------------------------------------------- /curObjects/createDataloaders_leaveoneout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/curObjects/createDataloaders_leaveoneout.py -------------------------------------------------------------------------------- /curObjects/createDataloaders_pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/curObjects/createDataloaders_pretrained.py -------------------------------------------------------------------------------- /curObjects/createDataloaders_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/curObjects/createDataloaders_random.py -------------------------------------------------------------------------------- /curObjects/datasetSelections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/curObjects/datasetSelections.py -------------------------------------------------------------------------------- /data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/data_augment.py -------------------------------------------------------------------------------- /dataset_generation/ExtractFuthl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractFuthl.py -------------------------------------------------------------------------------- /dataset_generation/ExtractLPW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractLPW.py -------------------------------------------------------------------------------- /dataset_generation/ExtractNVGaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractNVGaze.py -------------------------------------------------------------------------------- /dataset_generation/ExtractOpenEDS_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractOpenEDS_seg.py -------------------------------------------------------------------------------- /dataset_generation/ExtractPupilNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractPupilNet.py -------------------------------------------------------------------------------- /dataset_generation/ExtractRITEyes_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractRITEyes_general.py -------------------------------------------------------------------------------- /dataset_generation/ExtractRITEyes_nvgaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractRITEyes_nvgaze.py -------------------------------------------------------------------------------- /dataset_generation/ExtractRITEyes_openeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractRITEyes_openeds.py -------------------------------------------------------------------------------- /dataset_generation/ExtractSantini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractSantini.py -------------------------------------------------------------------------------- /dataset_generation/ExtractUnityEyes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ExtractUnityEyes.py -------------------------------------------------------------------------------- /dataset_generation/LPW_status.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/LPW_status.out -------------------------------------------------------------------------------- /dataset_generation/OpenEDS_status.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/OpenEDS_status.out -------------------------------------------------------------------------------- /dataset_generation/PN_status.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/PN_status.out -------------------------------------------------------------------------------- /dataset_generation/ProcessDatasets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/ProcessDatasets.sh -------------------------------------------------------------------------------- /dataset_generation/convert_fuhl_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/convert_fuhl_videos.py -------------------------------------------------------------------------------- /dataset_generation/fuhl_status.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/dataset_generation/fuhl_status.out -------------------------------------------------------------------------------- /evaluate_ellseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/evaluate_ellseg.py -------------------------------------------------------------------------------- /extern/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/.gitignore -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/CHANGELOG.md -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/COPYRIGHT.txt -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/README.md -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/environment.yml -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/__init__.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/__main__.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/argparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/argparser.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/bmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/bmm.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/checkpoints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/checkpoints/.gitignore -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/data.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/data_plant_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/data_plant_stuff.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/find_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/find_lr.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/get_image_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/get_image_size.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/locate.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/logger.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/losses.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/make_metric_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/make_metric_plots.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/metrics.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/metrics_from_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/metrics_from_results.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/models/__init__.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/models/unet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/models/unet_model.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/models/unet_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/models/unet_parts.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/models/utils.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/paint.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/train.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/object-locator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/object-locator/utils.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/scripts_dataset_and_results/generate_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/scripts_dataset_and_results/generate_csv.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/scripts_dataset_and_results/parseResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/scripts_dataset_and_results/parseResults.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/scripts_dataset_and_results/spacing_stats_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/scripts_dataset_and_results/spacing_stats_to_csv.py -------------------------------------------------------------------------------- /extern/locating-objects-without-bboxes/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/extern/locating-objects-without-bboxes/setup.py -------------------------------------------------------------------------------- /figures/EpSegvsElSeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/EpSegvsElSeg.py -------------------------------------------------------------------------------- /figures/dataset_info.tgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/dataset_info.tgn -------------------------------------------------------------------------------- /figures/draw.io/Enc_Dec.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/draw.io/Enc_Dec.drawio -------------------------------------------------------------------------------- /figures/draw.io/Tiramisu.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/draw.io/Tiramisu.drawio -------------------------------------------------------------------------------- /figures/ellseg_openeds_op.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/ellseg_openeds_op.gif -------------------------------------------------------------------------------- /figures/figures.ras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/figures.ras -------------------------------------------------------------------------------- /figures/promotional_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/figures/promotional_image.jpg -------------------------------------------------------------------------------- /helperfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/helperfunctions.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/loss.py -------------------------------------------------------------------------------- /maintainance/copyCheckpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/maintainance/copyCheckpoints.py -------------------------------------------------------------------------------- /maintainance/old_code/createDataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/maintainance/old_code/createDataloaders.py -------------------------------------------------------------------------------- /modelSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/modelSummary.py -------------------------------------------------------------------------------- /models/RITnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v1.py -------------------------------------------------------------------------------- /models/RITnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v2.py -------------------------------------------------------------------------------- /models/RITnet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v3.py -------------------------------------------------------------------------------- /models/RITnet_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v4.py -------------------------------------------------------------------------------- /models/RITnet_v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v5.py -------------------------------------------------------------------------------- /models/RITnet_v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v6.py -------------------------------------------------------------------------------- /models/RITnet_v7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/RITnet_v7.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/RITnet_v2.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/__pycache__/RITnet_v2.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/RITnet_v2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/__pycache__/RITnet_v2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/RITnet_v2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/__pycache__/RITnet_v2.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/deepvog_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/models/deepvog_pytorch.py -------------------------------------------------------------------------------- /pytorchtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/pytorchtools.py -------------------------------------------------------------------------------- /rc_launch_scripts/runRC_allTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/rc_launch_scripts/runRC_allTests.sh -------------------------------------------------------------------------------- /rc_launch_scripts/runRC_allvsone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/rc_launch_scripts/runRC_allvsone.sh -------------------------------------------------------------------------------- /rc_launch_scripts/runRC_disentangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/rc_launch_scripts/runRC_disentangle.sh -------------------------------------------------------------------------------- /rc_launch_scripts/runRC_testCode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/rc_launch_scripts/runRC_testCode.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/requirements.txt -------------------------------------------------------------------------------- /runLocal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/runLocal.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/utils.py -------------------------------------------------------------------------------- /weights/Fuhl.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/Fuhl.git_ok -------------------------------------------------------------------------------- /weights/LPW.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/LPW.git_ok -------------------------------------------------------------------------------- /weights/all.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/all.git_ok -------------------------------------------------------------------------------- /weights/nvgaze.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/nvgaze.git_ok -------------------------------------------------------------------------------- /weights/openeds.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/openeds.git_ok -------------------------------------------------------------------------------- /weights/pupilnet.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/pupilnet.git_ok -------------------------------------------------------------------------------- /weights/riteyes.git_ok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RSKothari/EllSeg/HEAD/weights/riteyes.git_ok --------------------------------------------------------------------------------