Skip to content

Commit

Permalink
Merge pull request recommenders-team#221 from Microsoft/staging
Browse files Browse the repository at this point in the history
Added version
  • Loading branch information
miguelgfierro authored Nov 12, 2018
2 parents 5f61b16 + 5ae6512 commit 98a2ce1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 8 additions & 0 deletions reco_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
__title__ = "Microsoft Recommenders"
__version__ = "0.1.0"
__author__ = "RecoDev Team at Microsoft"
__license__ = "MIT"
__copyright__ = "Copyright 2018-present Microsoft Corporation"

# Version synonym
VERSION = __version__
5 changes: 4 additions & 1 deletion reco_utils/evaluation/parameter_sweep.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
#
# Utility functions for parameter sweep.

from itertools import product


def generate_param_grid(params):
"""Generator of parameter grids
Generate parameter lists from a paramater dictionary in the form of
Expand Down Expand Up @@ -46,4 +50,3 @@ def generate_param_grid(params):

return params_exp


0 comments on commit 98a2ce1

Please sign in to comment.