File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed
src/python/tensorflow_cloud Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* Add notes for next release here.
4
4
5
- # Release 0.1.8
6
-
7
- * Added Kaggle integration
8
- * ` cloud_fit ` now moved to a sub-module under ` Tuner `
9
- * HParams plugin integration with DistributingCloudTuner
10
- * Added integration tests
11
- * Small bug fixes.
12
-
13
5
# Release 0.1.7
14
6
15
7
* ` cloud_fit ` uses pickle instead of cloudpickle.
Original file line number Diff line number Diff line change @@ -439,8 +439,9 @@ def test_get_trial_id(self):
439
439
440
440
def _assert_hps_equal (self , hps1 , hps2 ):
441
441
self .assertEqual (len (hps1 .space ), len (hps2 .space ))
442
- for hp1 , hp2 in zip (hps1 .space , hps2 .space ):
443
- self .assertEqual (repr (hp1 ), repr (hp2 ))
442
+ hps1_repr_list = [repr (x ) for x in hps1 .space ]
443
+ hps2_repr_list = [repr (x ) for x in hps2 .space ]
444
+ self .assertCountEqual (hps1_repr_list , hps2_repr_list )
444
445
445
446
def _assert_study_config_equal (
446
447
self , test_study_config , expected_study_config
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
"""Contains the version string of TensorFlow Cloud."""
15
15
16
- __version__ = "0.1.9 .dev"
16
+ __version__ = "0.1.8 .dev"
You can’t perform that action at this time.
0 commit comments