Posts

Bidirectional Recurrent Neural Networks

Image
Introduction In our ongoing objective to enhance the accuracy of Active Galactic Nuclei (AGN) light curve interpolation, we've previously explored various traditional and machine learning methods. Building on this foundation, this post introduces a sophisticated approach involving a Bidirectional Recurrent Neural Network (BRNN) coupled with an interpretative neural network layer, aimed at capturing the dynamics of AGN light curves more effectively. Understanding Bidirectional Recurrent Neural Networks (BRNNs) BRNNs are an extension of traditional Recurrent Neural Networks (RNNs), designed to improve model performance by processing data in both forward and reverse directions. This dual-path architecture allows the network to retain information from both past and future contexts simultaneously, which is particularly beneficial for predicting sequences with complex dependencies, like those found in AGN light curves. Implementing an Interpretative Neural Network Layer To make the outpu...

Taking on the Gaps: First Approaches of the Temporal Interpolation

Image
  Introduction In the study of Active Galactic Nuclei (AGNs), accurately interpolating light curve data is crucial for overcoming the challenge of observational gaps. This post elaborates on the implementation of both basic and advanced interpolation methods to enhance data continuity in AGN light curves. Maximizing Coverage Across AGN Light Curves An essential step in our analysis of AGN light curves was to establish a benchmark for maximum coverage in each observational band. This process involves determining the most comprehensive temporal span for which we have data, ensuring that our interpolation methods are aligned with these time frames. Traditional Interpolation Methods Initially, simple interpolation techniques were employed to address short gaps in the data: Linear Interpolation : This method assumes a linear progression between adjacent data points, making it suitable for intervals where changes are minor and gradual. Polynomial Interpolation : More complex than linear ...

Filling the Temporal Gaps in AGN Light Curve Data

  Introduction to the Challenge In our ongoing quest to understand Active Galactic Nuclei (AGNs), handling the discontinuous nature of AGN light curve data remains the main goal. The gaps in observation data, caused by unavoidable operational and environmental constraints, obscure the complete picture of these AGN data. To address several methods are taken into account to approach the temporal data interpolation, combining traditional techniques with advanced machine learning models. Traditional Interpolation Techniques The basic Interpolation Methods include: Linear Interpolation: Useful for filling short gaps where changes between points are expected to be gradual and linear. Polynomial Interpolation: Offers a more flexible approach for non-linear data, providing smoother estimates that can better reflect inherent variabilities in AGN light emissions. These techniques are fast and effective for smaller, simpler gaps but often fall short when dealing with larger or more complex ...

Tackling the Challenges of Active Galactic Nuclei Data with Machine Learning Models

  Understanding the Complexity of AGN Light Curve Data Active Galactic Nuclei (AGNs) are among the most luminous and dynamic objects in the universe, characterized by their variable light emissions that provide key insights into the mechanics of galaxy evolution. A fundamental challenge in studying AGNs is the nature of the data collected where the parameters such as time and wavelength are critical. Each observation captures the light curve of an AGN. However, this data isn't straightforward. Observations are taken using different instruments, like different stations or satellites, leading to variations in data quality and measurement techniques. More critically, there are inevitable gaps in the data, caused by factors ranging from environmental conditions blocking observations to the simple fact that different tools have different operational time frames and capabilities. The Goal: Enhancing Data Cohesiveness The objective of our research project is clear: to enhance the cohesive...

Starting the Project

Image
We are excited to start this project at the intersection of artificial intelligence and astronomy hosted by the Google Summer of Code (GSoC) program and work with the incredible team at OpenAstronomy. This project, which focuses on leveraging advanced data processing and deep learning models to enhance astronomical research, represents a unique opportunity to bridge the gap between data science and astronomy. I am eager to contribute my skills and enthusiasm aiming to tackle the complexities of diverse astronomical datasets. Working with the dedicated professionals at OpenAstronomy, I am confident that we will make significant strides in advancing the field and promoting the principles of open science and collaboration. Together, we will push the boundaries of what is possible in astronomical research, paving the way for new discoveries and fostering a more inclusive and accessible scientific community. I look forward to the exciting journey ahead and the work we will accomplish as a t...

Prior Research

  Prior Research The domain of artificial intelligence's application in astronomy has been enriched by seminal studies, such as the one conducted by Dr. Pavlos Protopapas from Harvard University, Dr. Germán García-Jara from the Universidad de Chile, and Dr. Pablo A. Estévez, also from the Universidad de Chile. Their research, " Improving Astronomical Time-series Classification via Data Augmentation with Generative Adversarial Networks " leverages GANs for the augmentation of astronomical data, specifically targeting the enhancement of variable star classification. This work, published in the reputable Astrophysical Journal, showcases the potential of deep learning techniques to address the challenges posed by imbalanced and complex datasets in astronomy. Their methodology and findings not only advance our understanding of astronomical data processing but also lay a solid foundation for further exploration in this interdisciplinary field. This project aims to build upon th...

GSOC2024 ML/DL Starter Problem

Image
GSOC2024 ML/DL Starter Problem This is a simple toy problem meant as a pre-application exercise for the GSOC2024 project Astronomical data enhancement with DL. Overview Here we will have a more simplified case of the actual project with no time information. We have measurements of galaxies in different wavelengthts (i.e., broadband filters) in five different fields and the task is to bring them all onto a same wavelength footing. A simple notebook to read the galaxy data in the initial filters is in this repository (gsoc-ML-exercise/ReadCandels.md). Link to the problem published in the Open Astronomy GitHub:  Published Problem Instructions Clone this repo and checkout the branch gsco-ML-exercise. Write code. Required: A simple way to combine all five fields in optical and NIR filters and output one file in the requested wavelengths. Optional: Use ML or DL to do this combination. Optional: Add plots to show what you did makes sense. Optional: Use prior information in ML by grouping ...