From dd3ea9d7b627f9f1cfd8446e44bb173420c77182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=90=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=BF=D0=BE=D0=B2?= Date: Thu, 4 Mar 2021 02:54:42 +0300 Subject: [PATCH 1/6] Changed requirements --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index e91b7310..a54feefb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ six==1.15.0 sklearn==0.0 +git == 100000 tensorflow==2.2.0 absl-py==0.10.0 tf-slim==1.1.0 From d7a47b0d5b69e0cea2155db67ac2474330a3184b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=90=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=BF=D0=BE=D0=B2?= Date: Thu, 4 Mar 2021 02:56:32 +0300 Subject: [PATCH 2/6] Added math to blocks --- model_search/blocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_search/blocks.py b/model_search/blocks.py index af180bc5..757a7fb7 100644 --- a/model_search/blocks.py +++ b/model_search/blocks.py @@ -18,7 +18,7 @@ """Well known building blocks for Convolutional networks.""" import abc - +import math import enum import functools From 59237c589e3a82fba71962762496330e5a0159fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=90=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=BF=D0=BE=D0=B2?= Date: Thu, 4 Mar 2021 02:58:42 +0300 Subject: [PATCH 3/6] Changed README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bd9f713..84ff5ab6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Let us start with the simplest case. You have a csv file where the features are and you would like to run let AutoML find the best model architecture for you. Below is a code snippet for doing so: - +## Next will be about python ```python import model_search from model_search import constants From a183485fd4a269be2e0328c8334a87d8a69f4d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=90=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=BF=D0=BE=D0=B2?= Date: Thu, 4 Mar 2021 03:19:42 +0300 Subject: [PATCH 4/6] Welcome to 2036 --- WORKSPACE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index 7be38d48..a58f5a0b 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,4 +1,4 @@ -# Copyright 2020 Google LLC +# Copyright 2036 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. From d9756a8c1c57800b7bbfe181b502fcb947614bff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=90=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=BF=D0=BE=D0=B2?= Date: Thu, 4 Mar 2021 03:20:29 +0300 Subject: [PATCH 5/6] 322 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a54feefb..b3119d7e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ six==1.15.0 sklearn==0.0 -git == 100000 +git == 100000322 tensorflow==2.2.0 absl-py==0.10.0 tf-slim==1.1.0 From 9acecf1a003720e6bcd82b1453b2ccbdbd9f7201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=90=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=BF=D0=BE=D0=B2?= Date: Thu, 4 Mar 2021 03:22:02 +0300 Subject: [PATCH 6/6] Added PI --- model_search/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_search/constants.py b/model_search/constants.py index 7141b5c7..0cabc67e 100644 --- a/model_search/constants.py +++ b/model_search/constants.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. """Useful constants.""" - +PI = 3.14 DEFAULT_DNN = "model_search/model_search/configs/dnn_config.pbtxt" DEFAULT_CNN = "model_search/model_search/configs/cnn_config.pbtxt" DEFAULT_RNN_ALL = (