Links to resources for creating Data Science Reports at different stages of the lifecycle.
- Stanford University's 2014 students final Data Science project reports
- Kaggle Winning Solution Template - For technical audience only
Links to resources for creating Data Science Reports at different stages of the lifecycle.
Install Docker (version latest)
Install NVIDIA Drivers (version _____)
# Copyright 2017 The TensorFlow Authors All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
lstm = model.layers[2] | |
# Get output from intermediate layer to visualize activations | |
attn_func = K.function(inputs = [model.get_input_at(0), K.learning_phase()], | |
outputs = [lstm.output] | |
) |