Skip to content

Commit

Permalink
adding fix for tfbind8 oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
brandontrabucco committed Mar 26, 2021
1 parent 1702ad5 commit f3e5a6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions design_bench/tasks/tfbind8_v0.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def __init__(self,
# expose the designs
self.x = x
self.y = y
self.sequences = dict(zip(seq0, y))
self.sequences.update(zip(seq1, y))
self.sequences = dict(zip(seq0, y0))
self.sequences.update(zip(seq1, y0))
self.score = np.vectorize(self.scalar_score,
signature='(n,4)->(1)')

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
setup(
name='design-bench',
packages=find_packages(include=['design_bench', 'design_bench.*']),
version='1.5',
version='1.6',
license='MIT',
description='Design-Bench: Benchmarks for Data-Driven Offline Model-Based Optimization',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Brandon Trabucco',
author_email='brandon@btrabucco.com',
url='https://github.com/brandontrabucco/design-bench',
download_url='https://github.com/brandontrabucco/design-bench/archive/v1_5.tar.gz',
download_url='https://github.com/brandontrabucco/design-bench/archive/v1_6.tar.gz',
keywords=['Offline', 'Benchmark', 'Model-Based Optimization'],
install_requires=INSTALL_REQUIRES,
extras_require={'all': EXTRA_REQUIRES},
Expand Down

0 comments on commit f3e5a6e

Please sign in to comment.