Skip to content

codeforgoodconf/black_holes_backend

Repository files navigation

Black Hole or Not Black Hole?

Welcome to the BlackholeNotblackhole project!

This is the backend for our web app, so we'll be writing server-side code to communicate with the frontend, store information in our database, and build the neural net to find galaxies with 'fossil' black holes.

For a quick intro to the project check out the MVP in notes.md. For more detailed description, check out the ML_Info/Project_Information.pdf directory

WR Classifier Procedure

  1. From the .fits file, open wavelength_values = 10**hdulist[1].data['loglam'] flux_values = hdulist[1].data['flux'] z = hdulist[2].data['z']
  2. Scale the wavelengths by 1/(1+z), correcting for redshift
  3. Adjust the slope of the curve
    1. Find the endpoints of the line by averaging the values around 4517±50 Å and 4785±50 Å
    2. Construct a line through those points
    3. At each point along the line, subtract the line's value from the flux
  4. Apply a Gaussian Kernel to smooth the data and remove noise
  5. Crop the range of samples to 4686±150 Å
  6. Standardize the domain of wavelengths by interpolating between samples, reducing the number of samples to 300

To classify He2, we perform the above operations, then take the sum of values around 4686±5 Å. If the sum is less that 0, we reject it as not containing He2.

Todo

  • Todo - He2 classifier

    • using charts, check that the data's around y=0
    • add in a small threshold value, exclude values below the threshold
    • try different widths
    • check how many samples we're actually using
  • Todo - WR classifier

    • Try multiple flux values
    • Look into other data in the fits file that could help train the classifier. What's contained in the other rows?
    • Find other features we can extract from the data? We could fit the overall curve to a blackbody curve, or fit the curve to a gaussian curve, then use the parameters from those to help build the classifier.

https://github.com/codeforgoodconf/black_holes_backend/blob/master/he2_classifier.py

Releases

No releases published

Packages

No packages published