Kisung You | Assistant Professor at Baruch College
Kisung You | Assistant Professor at Baruch College

I am an assistant professor in the Department of Mathematics at Baruch College and at The Graduate Center, both part of the City University of New York.
Here are some areas I work in:
- geometric statistics: optimal transport • manifolds • non-Euclidean data
- computational statistics: scalable algorithms • robust estimation • open-source software
- biomedical data science: clinical prediction • medical AI • scientific collaboration
Google Scholar · GitHub · LinkedIn · Email
News
library(yaml)Warning: package 'yaml' was built under R version 4.5.2
news <- yaml::read_yaml("news.yml")
news <- news[order(sapply(news, function(x) as.Date(x$date)), decreasing = TRUE)]
news <- head(news, 5)
cat("\n<ul class='news-list'>\n")- 2026-04-29New article: Geometric medians on product manifolds is published in Journal of Multivariate Analysis.
- 2026-02-12New article: Learning over von Mises-Fisher Distributions via a Wasserstein-like Geometry is published in Statistics and Computing.
- 2025-08-19New article: Usability and adoption in a randomized trial of GutGPT a GenAI tool for gastrointestinal bleeding is published in npj Digital Medicine.
- 2025-07-04New article: Scalable geometric learning with correlation-based functional brain networks is published in Scientific Reports.
- 2025-05-03New article: Expert of Experts Verification and Alignment (EVAL) is published in npj Digital Medicine.
for (item in news) {
date_str <- format(as.Date(item$date), "%Y-%m-%d")
cat(sprintf(
"<li><span class='date'>%s</span><span>%s</span></li>\n",
date_str,
item$title
))
}cat("</ul>\n")Last updated on June 29, 2026.