Simons Society Annual Retreat: Spring Break in San Juan

Following an amazing experience at the retreat in 2023, the Simons Foundation Society of Fellows 2024 retreat was held in San Juan, Puerto Rico during the spring semester break. The major goal of the retreat is to foster intellectual exchange and collaboration amongst the Junior and Senior fellows. We were treated to daily presentations from Senior and Junior Fellows and I learned a lot from the lectures. However, the informal gatherings—on the beach or in the pool—are probably why we enjoy the retreats.

The retreat was physically located in the Fairmont El San Juan hotel in Puerto Rico. The hotel is on the beach and has a night club! There is also a casino where I lost ~$50. (At some point, I was up by almost ~$200.) Better luck next time!

El Yunque National Forest

Objectives and Format

The primary goal of the retreat is to facilitate discussions and interactions that cross traditional academic boundaries, reflecting the foundation’s overarching mission to advance research in basic sciences and mathematics. The event features a series of 20-minute talks delivered by selected Fellows, showcasing a diverse range of research topics from theoretical physics to computational neuroscience.

Highlights from the 2024 Retreat

The 2024 retreat included presentations on various scientific and mathematical topics. I took notes during a subset of the presentations.

For instance, Michael Chapman discussed mathematical approximations and their limits in convergence, while Sanchit Chaturvedi reviewed the historical and mathematical evolution of the theory of gases. Emanuele Galiffi presented on the possibilities of manipulating light through temporal changes in matter, aiming to overcome traditional limitations in optical sciences. Jane Hubbard’s talk focused on how dietary choices and aging affect stem cells, using C. elegans as a model to understand cellular and molecular mechanisms. Isabel Low from Columbia University provided insights into the neural mechanisms that transform memories into actions in birds, a critical survival trait. Additionally, Carol Mason discussed the development of binocular vision and its molecular underpinnings and also discussed questions about the impact of melanin presence in retinal cells. Francesca Mignacco discussed the application of statistical physics to understand large populations of neurons, highlighting the challenges and advancements in interpreting complex neural data. Oliver Philcox’s presentation pondered the asymmetry of the universe, reflecting on how our perceptions are shaped by physical laws. And Andre Toussaint discussed some behavioral and neural signatures of chronic pain and abuse.

I am looking forward to the 2025 retreat! Will it be held in Hawaii?

Some Thoughts on Rethinking Databases for Computational Science

From 2014-2015, I was a Database Kernel Engineer in the Distributed Systems team at MongoDB. The team was responsible for designing and implementing protocols for executing database queries on data that is distributed across multiple machines. The query plan was automatically decided based on several factors (including read/write throughput, data locality, and data distribution).

A shard key (i.e., a single indexed field or multiple fields) was used to distribute data into multiple chunks on different servers. Thus, the choice of a shard key could lead to different data distributions. This choice is especially important throughout the lifetime of executing different queries on the same data. As a result, domain knowledge of the data distribution and the lifetime of possible queries could be important in the query plan execution. In specific scientific fields (e.g., quantum physics), the data generated can be stored in a flat view. But this view does not take advantage of the data generating process to eliminate redundancies, thus resulting in costly materializations. What if we had a way to design query and storage plans using knowledge of the scientific domain? Clearly, this could lead to significant improvements in storage and computation costs.

Computational Science (or Scientific Computing) is an emerging discipline that essentially uses computers to simulate or solve scientific problems (whether in social sciences or natural sciences). The input of domain knowledge is critical to computational science. Database Theory has been crucial to the design and use of database management systems, providing the SQL (Structured Query Language) interface, the relational model and calculus, and related abstractions[1]. It is now well-acknowledged that the database management system that should be adopted depends on the type of data that would be stored and the resulting queries that can be run across the data. For example, graph database systems are well-suited for storing lots of data that represents relationships (edges) between entities (nodes). Relationships are considered first-class citizens in graph databases and so the queries are optimized for inference on graphs. Usually, the storage and indexing format implicitly takes advantage of domain knowledge of graphs for the design of the database. Can we apply a similar methodology to the design of database abstractions for scientific modeling? I assert that we can!

ChatGPT-generated image that represents “computational science”

Task-Based Search for Alignment

Within the database community, there have been a couple of theoretical ideas and implementations that design task-based dataset search systems. The idea is as follows: given a set of providers that can provide a data corpus, the dataset search system identifies augmentable datasets that maximize the utility of a machine-learning or data-analytic task. Then these datasets are used to perform a specific analysis task. For optimization purposes, designing the search system requires domain knowledge about the query or set of queries to be performed and about other critical concerns (e.g., privacy and security). Within the artificial intelligence community that focuses on large language models, this is called AI alignment, the “process of encoding human values and goals into large language models to make them as helpful, safe, and reliable as possible. Through alignment, enterprises can tailor AI models to follow their business rules and policies”[2]. For task-based dataset search, the search systems are tailored to follow business rules and policies (with certain costs, of course) for a specific data-analytic task. However, with AI alignment, the goal is to align the system with certain values and goals without specifying a clear objective function! To train such systems, you need an evaluator (i.e., another LLM or a human being) that is able to expertly determine the effectiveness of the current LLM. The expertise of evaluator is crucial to the whole process and thus the evaluator must provide high-quality data through, for example, a task-based dataset search system! Throughout the whole process of alignment, access to high-quality data and domain knowledge is important. One could say that we need computational alignment of sciences (with domain knowledge of the data generating process) and the system where the data will be stored and queried.

Database Theory for Science Tasks

We need new theory to show the limits and capabilities of domain knowledge and task-based search for the computational sciences. Then relying on such theory, we can design more effective systems for simulating, illuminating, or solving scientific problems. To give a specific problem: the quantum many-body physics subfield concerns exploring physical properties of many interacting quantum particles. The interactions between the particles has information that is encoded in some wave function of the entire complex system. Storing and accounting for all interactions becomes infeasible quickly as the dimension of the system scales exponentially with the number of particles. Is there a way to take advantage of database approximations when performing such complex simulations?

References

[1] Raghu Ramakrishnan and Johannes Gehrke. 2002. Database Management Systems (3 ed.). McGraw-Hill, Inc., USA.

[2] IBM Research. What is AI alignment? https://research.ibm.com/blog/what-is-alignment-ai