Skip to content

Commit

Permalink
updating to add caliper
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsochat@stanford.edu>
  • Loading branch information
vsoch committed Jan 2, 2021
1 parent d85fb5c commit 25f2d1e
Show file tree
Hide file tree
Showing 159 changed files with 1,301 additions and 23,393 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM {{ base }}
ADD . /tmp/repo
WORKDIR /tmp/repo
ENV LANG C.UTF-8
ENV SHELL /bin/bash
RUN apt-get update && apt-get install -y wget ca-certificates gnupg2 git
RUN /bin/bash -c "wget {{ filename }} && pip install {{ basename }}"
{% if deps %}RUN pip install {{ deps }}{% endif %}
6 changes: 5 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

All contributions by Vanessa Sochat:
Copyright (c) 2020-2021, Vanessa Sochat.
All rights reserved.

All contributions by Aymeric Damien:
Copyright (c) 2015, Aymeric Damien.
All rights reserved.
Expand All @@ -27,4 +31,4 @@ Copyright (c) 2015, the respective contributors.
All rights reserved.

Each contributor holds copyright over their respective contributions.
The project versioning (Git) records all such contribution source information.
The project versioning (Git) records all such contribution source information.
200 changes: 73 additions & 127 deletions README.md

Large diffs are not rendered by default.

53 changes: 53 additions & 0 deletions caliper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
analysis:
name: Testing tensorflow
dockerfile: Dockerfile
dependency: tensorflow
tests:
- tensorflow_v0.11/5_MultiGPU/multigpu_basics.py
- tensorflow_v0.11/1_Introduction/basic_operations.py
- tensorflow_v0.11/1_Introduction/helloworld.py
- tensorflow_v0.11/4_Utils/tensorboard_advanced.py
- tensorflow_v0.11/4_Utils/tensorboard_basic.py
- tensorflow_v0.11/4_Utils/save_restore_model.py
- tensorflow_v0.11/2_BasicModels/logistic_regression.py
- tensorflow_v0.11/2_BasicModels/linear_regression.py
- tensorflow_v0.11/2_BasicModels/nearest_neighbor.py
- tensorflow_v0.11/3_NeuralNetworks/bidirectional_rnn.py
- tensorflow_v0.11/3_NeuralNetworks/autoencoder.py
- tensorflow_v0.11/3_NeuralNetworks/recurrent_network.py
- tensorflow_v0.11/3_NeuralNetworks/dynamic_rnn.py
- tensorflow_v0.11/3_NeuralNetworks/multilayer_perceptron.py
- tensorflow_v0.11/3_NeuralNetworks/convolutional_network.py

- tensorflow_v1/1_Introduction/basic_eager_api.py
- tensorflow_v1/1_Introduction/basic_operations.py
- tensorflow_v1/1_Introduction/helloworld.py
- tensorflow_v1/4_Utils/tensorboard_advanced.py
- tensorflow_v1/4_Utils/tensorboard_basic.py
- tensorflow_v1/4_Utils/save_restore_model.py
- tensorflow_v1/5_DataManagement/build_an_image_dataset.py
- tensorflow_v1/5_DataManagement/tensorflow_dataset_api.py
- tensorflow_v1/2_BasicModels/random_forest.py
- tensorflow_v1/2_BasicModels/gradient_boosted_decision_tree.py
- tensorflow_v1/2_BasicModels/logistic_regression.py
- tensorflow_v1/2_BasicModels/word2vec.py
- tensorflow_v1/2_BasicModels/linear_regression.py
- tensorflow_v1/2_BasicModels/logistic_regression_eager_api.py
- tensorflow_v1/2_BasicModels/nearest_neighbor.py
- tensorflow_v1/2_BasicModels/linear_regression_eager_api.py
- tensorflow_v1/2_BasicModels/kmeans.py
- tensorflow_v1/6_MultiGPU/multigpu_basics.py
- tensorflow_v1/6_MultiGPU/multigpu_cnn.py
- tensorflow_v1/3_NeuralNetworks/variational_autoencoder.py
- tensorflow_v1/3_NeuralNetworks/neural_network_eager_api.py
- tensorflow_v1/3_NeuralNetworks/neural_network.py
- tensorflow_v1/3_NeuralNetworks/bidirectional_rnn.py
- tensorflow_v1/3_NeuralNetworks/convolutional_network_raw.py
- tensorflow_v1/3_NeuralNetworks/autoencoder.py
- tensorflow_v1/3_NeuralNetworks/gan.py
- tensorflow_v1/3_NeuralNetworks/recurrent_network.py
- tensorflow_v1/3_NeuralNetworks/dynamic_rnn.py
- tensorflow_v1/3_NeuralNetworks/neural_network_raw.py
- tensorflow_v1/3_NeuralNetworks/dcgan.py
- tensorflow_v1/3_NeuralNetworks/multilayer_perceptron.py
- tensorflow_v1/3_NeuralNetworks/convolutional_network.py
85 changes: 0 additions & 85 deletions examples/2_BasicModels/gradient_boosted_decision_tree.py

This file was deleted.

93 changes: 0 additions & 93 deletions examples/2_BasicModels/kmeans.py

This file was deleted.

69 changes: 0 additions & 69 deletions examples/2_BasicModels/linear_regression_eager_api.py

This file was deleted.

0 comments on commit 25f2d1e

Please sign in to comment.