浏览代码

cleanup setup.cfg

/develop-generalizationTraining-TrainerController
Chris Elion 5 年前
当前提交
e69ddc53
共有 3 个文件被更改,包括 7 次插入9 次删除
  1. 1
      ml-agents/mlagents/trainers/barracuda.py
  2. 1
      ml-agents/mlagents/trainers/tensorflow_to_barracuda.py
  3. 14
      setup.cfg

1
ml-agents/mlagents/trainers/barracuda.py


BARRACUDA_VERSION = 16
# Definition of Barracuda model
class Model:
def __init__(self):

1
ml-agents/mlagents/trainers/tensorflow_to_barracuda.py


# TODO:'Rsqrt'
}
# Debug
def debug(s):
print(s)

14
setup.cfg


max-line-length=120
ignore =
# Black
W503,
# Black
E203,
# Black tends to introduce things flake8 doesn't like, such as "line break before binary operator"
# or whitespace before ':'. Rather than fight with black, just ignore these for now.
W503, E203,
# may be undefined, or defined from star imports
# "may be undefined, or defined from star imports" and related warnings
# We should stop doing these, but for now, leave them in.
# vertical whitespace e.g. "expected 2 blank lines, found 1"
E302
正在加载...
取消
保存