mirror of
https://github.com/facebookresearch/ReAgent.git
synced 2026-05-17 12:40:39 +00:00
4b95d78f89
Summary: Add hyperparameter tuning using Ax for non-FBL workflows Reviewed By: kittipatv Differential Revision: D25487673 fbshipit-source-id: 16c7bd9ff6f63c9222acd3413c398219f8d2c140
78 lines
1.6 KiB
INI
78 lines
1.6 KiB
INI
[metadata]
|
|
name = reagent
|
|
version = 0.1
|
|
url = https://github.com/facebookresearch/ReAgent
|
|
author = Facebook
|
|
description = Facebook RL
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
license = BSD 3-Clause License
|
|
|
|
[options]
|
|
packages = find:
|
|
python_requires = >=3.7
|
|
install_requires =
|
|
click>=7.0
|
|
# ~=1.2.0 for compatibility with gym
|
|
# issue: https://github.com/openai/spinningup/issues/178
|
|
cloudpickle~=1.2.0
|
|
fvcore
|
|
numpy>=1.17.2
|
|
pandas>=1.0.3
|
|
# https://github.com/samuelcolvin/pydantic/issues/2042
|
|
pydantic>=1.4,<1.7
|
|
tinydb >= 4.1.1
|
|
tqdm>=4.46.0
|
|
petastorm>=0.9.0
|
|
parameterized>=0.7.4
|
|
pyspark==2.4.6
|
|
pytorch-lightning==1.1.5
|
|
ruamel.yaml>=0.15.99
|
|
scipy>=1.3.1
|
|
tensorboard>=1.14
|
|
scikit-learn>=0.20.0
|
|
|
|
[options.extras_require]
|
|
gym =
|
|
# Some issue with https://github.com/openai/gym/pull/1974
|
|
# Remove the pinning when https://github.com/openai/gym/issues/2058 is fixed
|
|
gym[classic_control,box2d,atari]==0.17.2
|
|
gym_minigrid
|
|
recsim-no-tf
|
|
|
|
test =
|
|
coverage>=5.1
|
|
pytest-xdist>=1.30.0
|
|
pytest>=5.3
|
|
spark-testing-base==0.10.0
|
|
pytest-cov
|
|
|
|
ax = ax-platform
|
|
|
|
|
|
###########
|
|
# Linting #
|
|
###########
|
|
|
|
[flake8]
|
|
# E203: black and flake8 disagree on whitespace before ':'
|
|
# W503: black and flake8 disagree on how to place operators
|
|
ignore = E203, W503
|
|
max-line-length = 88
|
|
exclude =
|
|
.git,__pycache__,docs
|
|
|
|
[coverage:report]
|
|
omit =
|
|
serving/*
|
|
|
|
|
|
###########
|
|
# Testing #
|
|
###########
|
|
|
|
[tool:pytest]
|
|
addopts = --verbose
|
|
python_files = reagent/test/*.py reagent/test/**/*.py reagent/gym/tests/*.py reagent/gym/tests/**/*.py
|
|
markers = serial
|