Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
73748d01
Unverified
Commit
73748d01
authored
Mar 09, 2018
by
Chris Shallue
Committed by
GitHub
Mar 09, 2018
Browse files
Merge pull request #3555 from cshallue/master
Small updates to astronet
parents
05ccaf88
bd855ed1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
research/astronet/README.md
research/astronet/README.md
+9
-3
research/astronet/astronet/data/generate_download_script.py
research/astronet/astronet/data/generate_download_script.py
+1
-1
No files found.
research/astronet/README.md
View file @
73748d01
...
...
@@ -402,10 +402,16 @@ The output should look like this:
```
Prediction: 0.9480018```
This means that the model is about 95% confident that the input TCE is a planet.
Indeed, this TCE is
This means the model is about 95% confident that the input TCE is a planet.
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),
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
input representations. For Kepler-90 i, the plot should look something like
...
...
research/astronet/astronet/data/generate_download_script.py
View file @
73748d01
...
...
@@ -90,7 +90,7 @@ def main(argv):
f
.
write
(
"echo 'Finished downloading {} Kepler targets to {}'
\n
"
.
format
(
num_kepids
,
FLAGS
.
download_dir
))
os
.
chmod
(
FLAGS
.
output_file
,
0744
)
# Make the download script executable.
os
.
chmod
(
FLAGS
.
output_file
,
0
o
744
)
# Make the download script executable.
print
(
"{} Kepler targets will be downloaded to {}"
.
format
(
num_kepids
,
FLAGS
.
output_file
))
print
(
"To start download, run:
\n
{}"
.
format
(
"./"
+
FLAGS
.
output_file
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment