Paths are abbreviated: LOCAL_DIR is your local machine, SERVER_DIR is the polygon server
Example: LOCAL_DIR= '/Users//code/vll/visual-precision' server_DIR= '/Volumes/vislearnlab/experiments/visual-precision'
Level 1 · Move raw video and conversion:
LOCAL_DIR/raw/raw_videos/*
│ upload
▼
SERVER_DIR/data/raw/original_videos/webm/*
│ convert
▼
SERVER_DIR/data/raw/original_videos/mp4/*
Level 2 · Lookit JSON → trials CSV:
LOCAL_DIR/data/raw/lookit/sample#/input_lookit_study.json
│ clean & format
▼
SERVER_DIR/data/main/data_to_analyze/lookit_study.json
SERVER_DIR/data/raw/original_videos/mp4/*
│ iCatcher+
├──────► SERVER_DIR/data/raw/icatcher_videos/*
│
└──────► SERVER_DIR/data/raw/icatcher_annotations/*
│
└──────► SERVER_DIR/data/main/data_to_analyze/level-looks_source-lookit_data.csv
SERVER_DIR/data/raw/icatcher_annotations/*
│ process (through jupyter notebook)
▼
SERVER_DIR/data/main/data_to_analyze/level-looks_source-icatcher_data.csv
visual-precision/
├── analysis/ # Part 4 analysis and model similarities
├── data/
│ ├── embeddings/ # embeddings for current sample
│ ├── main/ # local copies of processed iCatcher and Lookit data
│ ├── metadata/
│ ├── pilot/ # pilot data
│ └── raw/ # videos placed in part 1 of pre..
├── experiment/ # image pairs used and raw js
├── figures/ # final-stage graphs for publication
├── models/ # model information
├── preprocessing/ # primary preprocessing scripts
├── stimuli/
├── writing/ # drafts and writing
├── .env_template
├── .gitignore
├── preprocess.py # Part 1
├── README.md
└── requirements.txt
visual-precision/
├── analysis/ # R scripts and results
├── data/
│ ├── embeddings/ # model embedding results
│ ├── main/ # processed iCatcher and Lookit data (CSVs)
│ ├── metadata/
│ ├── pilot/ # pilot data and analysis for comparison
│ └── raw/
│ ├── icatcher_annotations/ # frame-by-frame gaze data
│ ├── icatcher_videos/ # videos with gaze overlay
│ ├── lookit/ # Lookit data from Part 2, giftcard scripts
│ └── original_videos/ # webm and mp4 videos
├── frames/ # image pairs generated
├── models/ # model information
├── preprocessing/ # backup copy of preprocessing scripts
├── stimuli/ # images used for testing
├── .env_template
├── .gitignore
├── preprocess.py # Part 1
├── README.md
└── requirements.txt