auriga

A neural network for predicting population parameters

https://github.com/mkounkel/auriga

Science Score: 36.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    1 of 1 committers (100.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.5%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

A neural network for predicting population parameters

Basic Info
  • Host: GitHub
  • Owner: mkounkel
  • License: mit
  • Language: Python
  • Default Branch: master
  • Homepage:
  • Size: 6.3 MB
Statistics
  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 2
Created over 6 years ago · Last pushed 11 months ago
Metadata Files
Readme License

README.md

Auriga

Auriga neural net predicts age, extinction, and distance to stellar populations

Installation:

pip install auriga (requires Python3)

Keywords:

``` positional arguments: tableIn Input table with Gaia DR2 source ids and cluster ids

optional arguments: -h, --help show this help message and exit --tutorial Use included test.fits or test.csv files as inputs --tableOut TABLEOUT Prefix of the csv file into which the cluster properties should be written, default tableIn-out --iters ITERS Number of iterations of each cluster is passed through Auriga to generate the errors, default 10 --localFlux Download necessary flux from Gaia archive for all source ids, default True --saveFlux SAVEFLUX If downloading flux, prefix of file where to save it, default empty --silent Suppress print statements, default False --cluster CLUSTER Column with cluster membership --sourceid SOURCEID Column with Gaia DR2 source id, --gaiaFluxErrors If loading flux, whether uncertainties in Gaia bands have been converted from flux to magnitude, default True --g G If loading flux, column for G magnitude --bp BP If loading flux, column for BP magnitude --rp RP If loading flux, column for RP magnitude --j J If loading flux, column for J magnitude --h H If loading flux, column for H magnitude --k K If loading flux, column for K magnitude --parallax PARALLAX If loading flux, column for parallax --eg EG If loading flux, column for uncertainty in G magnitude --ebp EBP If loading flux, column for uncertainty in BP magnitude --erp ERP If loading flux, column for uncertainty in RP magnitude --ej EJ If loading flux, column for uncertainty in J magnitude --eh EH If loading flux, column for uncertainty in H magnitude --ek EK If loading flux, column for uncertainty in K magnitude --eparallax EPARALLAX If loading flux, column for uncertainty in parallax --gf GF If uncertainties have not been converted to magnitudes, column for G flux --bpf BPF If uncertainties have not been converted to magnitudes, column for BP flux --rpf RPF If uncertainties have not been converted to magnitudes, column for RP flux --egf EGF If uncertainties have not been converted to magnitudes, column for uncertainty in G flux --ebpf EBPF If uncertainties have not been converted to magnitudes, column for uncertainty in BP flux --erpf ERPF If uncertainties have not been converted to magnitudes, column for uncertainty in RP flux --memoryOnly Store table only in memory without saving to disk --ver VER Version of Gaia data to download, default DR3

```

Examples:

Downloading photometry from the Gaia Archive for the sources defined in the fits table, saving the fluxes, and generating the outputs auriga test.fits --tableOut test-out --saveFlux test --tutorial

Using previously downloaded fluxes to generate predictions. 20 implementations of each cluster are generated instead of 10, to estimate the uncertainties in the cluster parameters auriga test.csv --localFlux --iters=20 --tutorial

Using previously downloaded fluxes, defining all the necessary columns ``` auriga test.fits --localFlux --gaiaFluxErrors --g photgmeanmag --bp photbpmeanmag \ --rp photrpmeanmag --j jm --h hm --k ksm --ej jmsigcom --eh hmsigcom \ --ek ksmsigcom --eparallax parallaxerror --tutorial --silent

Using from within a code, outside of a command line from auriga.auriga import getClusterAge t=Table.read('test.csv') out=getClusterAge(t,localFlux=True) out=getClusterAge('test.csv',tutorial=True,memoryOnly=True) ```

Required packages:

  • Astropy
  • Astroquery
  • Pytorch
  • Pandas

Owner

  • Login: mkounkel
  • Kind: user

GitHub Events

Total
  • Push event: 10
Last Year
  • Push event: 10

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 6
  • Total Committers: 1
  • Avg Commits per committer: 6.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
mkounkel m****l@u****u 6
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: almost 2 years ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 32 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 3
  • Total maintainers: 1
pypi.org: auriga

A neural network for structure parameter determination

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32 Last month
Rankings
Dependent packages count: 10.1%
Downloads: 18.3%
Stargazers count: 27.9%
Forks count: 29.8%
Average: 30.7%
Dependent repos count: 67.2%
Maintainers (1)
Last synced: 11 months ago

Dependencies

setup.py pypi
  • astropy *
  • astroquery *
  • pandas *
  • torch *
  • torchvision *