This is a GitHub repo template for the lab. Feel free to contribute.
A brief eye-catching intro of the project.
Can include a figure here.
<img src = "assets/architecture.png" width=800>
@article{
Put the google scholar Bibtex here.
}
git clone https://github.com/KrishnaswamyLab/ProjectName.git
cd ProjectName
chmod +x setup.sh && ./setup.sh
source .venv/bin/activatecd src/preprocessing
python preprocess_xxx.pycd src/
python main_xxx.pycd src/script_analysis/
python analyze_xxx.py
cd src/script_vis/
python visualize_xxx.py├── assets/ # Figures to display in this repo
├── comparison/ # Baseline methods to compare with
├── data/ # Data files
├── src/ # Code folder
│ ├── preprocessing/ # Preprocessing code
│ ├── datasets/ # Data loaders
│ ├── model/ # Neural networks
│ ├── utils/ # Utility functions
│ ├── script_analysis/ # Analysis
│ ├── script_vis/ # Visualization
│ └── main_xxx.py # Main training/eval script
├── results/ # Training/eval outputs
├── requirements.txt # Environment dependencies
└── setup.sh # Environment setup
