".github/vscode:/vscode.git/clone" did not exist on "df7cd5fe3feb358d1faae0ee3896ad8d220eb629"
Unverified Commit 73748d01 authored by Chris Shallue's avatar Chris Shallue Committed by GitHub
Browse files

Merge pull request #3555 from cshallue/master

Small updates to astronet
parents 05ccaf88 bd855ed1
...@@ -402,10 +402,16 @@ The output should look like this: ...@@ -402,10 +402,16 @@ The output should look like this:
```Prediction: 0.9480018``` ```Prediction: 0.9480018```
This means that the model is about 95% confident that the input TCE is a planet. This means the model is about 95% confident that the input TCE is a planet.
Indeed, this TCE is Of course, this is only a small step in the overall process of discovering and
validating an exoplanet: the model’s prediction is not proof one way or the
other. The process of validating this signal as a real exoplanet requires
significant follow-up work by an expert astronomer --- see Sections 6.3 and 6.4
of [our paper](http://iopscience.iop.org/article/10.3847/1538-3881/aa9e09/meta)
for the full details. In this particular case, our follow-up analysis validated
this signal as a bona fide exoplanet: it’s now called
[Kepler-90 i](https://www.nasa.gov/press-release/artificial-intelligence-nasa-data-used-to-discover-eighth-planet-circling-distant-star), [Kepler-90 i](https://www.nasa.gov/press-release/artificial-intelligence-nasa-data-used-to-discover-eighth-planet-circling-distant-star),
which is the eighth planet discovered around the Kepler-90 star! and is the record-breaking eighth planet discovered around the Kepler-90 star!
In addition to the output prediction, the script will also produce a plot of the In addition to the output prediction, the script will also produce a plot of the
input representations. For Kepler-90 i, the plot should look something like input representations. For Kepler-90 i, the plot should look something like
......
...@@ -90,7 +90,7 @@ def main(argv): ...@@ -90,7 +90,7 @@ def main(argv):
f.write("echo 'Finished downloading {} Kepler targets to {}'\n".format( f.write("echo 'Finished downloading {} Kepler targets to {}'\n".format(
num_kepids, FLAGS.download_dir)) num_kepids, FLAGS.download_dir))
os.chmod(FLAGS.output_file, 0744) # Make the download script executable. os.chmod(FLAGS.output_file, 0o744) # Make the download script executable.
print("{} Kepler targets will be downloaded to {}".format( print("{} Kepler targets will be downloaded to {}".format(
num_kepids, FLAGS.output_file)) num_kepids, FLAGS.output_file))
print("To start download, run:\n {}".format("./" + FLAGS.output_file print("To start download, run:\n {}".format("./" + FLAGS.output_file
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment