在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → python-bagging.rar

python-bagging.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:11.86M
  • 下载次数:2
  • 浏览次数:116
  • 发布时间:2021-11-27
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
- 从样本集中用Bootstrap采样选出n个样本 - 在所有属性上,对这n个样本建立分类器(CART or SVM or ...) - 重复以上两步m次,i.e.build m个分类器(CART or SVM or ...) - 将数据放在这m个分类器上跑,最后vote看到底分到哪一类
【实例截图】
【核心代码】
4744302542874095367.rar
└── bagging算法python
├── numpy-1.9.0-win32-superpack-python3.4.exe
├── openpyxl-2.2.1
│   ├── AUTHORS.rst
│   ├── build
│   │   ├── bdist.win32
│   │   └── lib
│   │   ├── et_xmfile
│   │   │   ├── common_imports.py
│   │   │   ├── __init__.py
│   │   │   ├── test_incremental_xmlfile.py
│   │   │   └── xmlfile.py
│   │   └── openpyxl
│   │   ├── cell
│   │   │   ├── cell.py
│   │   │   ├── formula.py
│   │   │   ├── __init__.py
│   │   │   ├── interface.py
│   │   │   └── read_only.py
│   │   ├── charts
│   │   │   ├── axis.py
│   │   │   ├── bar.py
│   │   │   ├── chart.py
│   │   │   ├── error_bar.py
│   │   │   ├── graph.py
│   │   │   ├── __init__.py
│   │   │   ├── legend.py
│   │   │   ├── line.py
│   │   │   ├── pie.py
│   │   │   ├── reference.py
│   │   │   ├── scatter.py
│   │   │   ├── series.py
│   │   │   └── writer.py
│   │   ├── comments
│   │   │   ├── comments.py
│   │   │   └── __init__.py
│   │   ├── compat
│   │   │   ├── abc.py
│   │   │   ├── functools.py
│   │   │   ├── __init__.py
│   │   │   ├── itertools.py
│   │   │   ├── numbers.py
│   │   │   ├── odict.py
│   │   │   ├── singleton.py
│   │   │   └── strings.py
│   │   ├── conftest.py
│   │   ├── descriptors
│   │   │   ├── base.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── serialisable.py
│   │   │   └── slots.py
│   │   ├── drawing
│   │   │   ├── drawing.py
│   │   │   └── __init__.py
│   │   ├── formatting
│   │   │   ├── formatting.py
│   │   │   ├── __init__.py
│   │   │   ├── rule.py
│   │   │   └── rules.py
│   │   ├── __init__.py
│   │   ├── reader
│   │   │   ├── comments.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── strings.py
│   │   │   ├── style.py
│   │   │   ├── workbook.py
│   │   │   └── worksheet.py
│   │   ├── styles
│   │   │   ├── alignment.py
│   │   │   ├── borders.py
│   │   │   ├── colors.py
│   │   │   ├── differential.py
│   │   │   ├── fills.py
│   │   │   ├── fonts.py
│   │   │   ├── hashable.py
│   │   │   ├── __init__.py
│   │   │   ├── named_styles.py
│   │   │   ├── numbers.py
│   │   │   ├── protection.py
│   │   │   ├── proxy.py
│   │   │   ├── styleable.py
│   │   │   └── style.py
│   │   ├── utils
│   │   │   ├── datetime.py
│   │   │   ├── exceptions.py
│   │   │   ├── indexed_list.py
│   │   │   ├── __init__.py
│   │   │   └── units.py
│   │   ├── workbook
│   │   │   ├── __init__.py
│   │   │   ├── interface.py
│   │   │   ├── names
│   │   │   │   ├── external.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── named_range.py
│   │   │   ├── properties.py
│   │   │   ├── read_only.py
│   │   │   ├── workbook.py
│   │   │   └── write_only.py
│   │   ├── worksheet
│   │   │   ├── datavalidation.py
│   │   │   ├── dimensions.py
│   │   │   ├── filters.py
│   │   │   ├── header_footer.py
│   │   │   ├── __init__.py
│   │   │   ├── interface.py
│   │   │   ├── iter_worksheet.py
│   │   │   ├── page.py
│   │   │   ├── pivot.py
│   │   │   ├── properties.py
│   │   │   ├── protection.py
│   │   │   ├── relationship.py
│   │   │   ├── views.py
│   │   │   └── worksheet.py
│   │   ├── writer
│   │   │   ├── comments.py
│   │   │   ├── drawings.py
│   │   │   ├── dump_worksheet.py
│   │   │   ├── etree_worksheet.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── lxml_worksheet.py
│   │   │   ├── relations.py
│   │   │   ├── strings.py
│   │   │   ├── styles.py
│   │   │   ├── theme.py
│   │   │   ├── workbook.py
│   │   │   └── worksheet.py
│   │   └── xml
│   │   ├── constants.py
│   │   ├── functions.py
│   │   ├── __init__.py
│   │   ├── namespace.py
│   │   └── xmlfile.py
│   ├── dist
│   │   └── openpyxl-2.2.1-py3.4.egg
│   ├── et_xmfile
│   │   ├── common_imports.py
│   │   ├── __init__.py
│   │   ├── test_incremental_xmlfile.py
│   │   └── xmlfile.py
│   ├── LICENCE.rst
│   ├── MANIFEST.in
│   ├── openpyxl
│   │   ├── cell
│   │   │   ├── cell.py
│   │   │   ├── formula.py
│   │   │   ├── __init__.py
│   │   │   ├── interface.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cell.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   └── read_only.cpython-34.pyc
│   │   │   └── read_only.py
│   │   ├── charts
│   │   │   ├── axis.py
│   │   │   ├── bar.py
│   │   │   ├── chart.py
│   │   │   ├── error_bar.py
│   │   │   ├── graph.py
│   │   │   ├── __init__.py
│   │   │   ├── legend.py
│   │   │   ├── line.py
│   │   │   ├── pie.py
│   │   │   ├── __pycache__
│   │   │   │   ├── axis.cpython-34.pyc
│   │   │   │   ├── bar.cpython-34.pyc
│   │   │   │   ├── chart.cpython-34.pyc
│   │   │   │   ├── error_bar.cpython-34.pyc
│   │   │   │   ├── graph.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── legend.cpython-34.pyc
│   │   │   │   ├── line.cpython-34.pyc
│   │   │   │   ├── pie.cpython-34.pyc
│   │   │   │   ├── reference.cpython-34.pyc
│   │   │   │   ├── scatter.cpython-34.pyc
│   │   │   │   ├── series.cpython-34.pyc
│   │   │   │   └── writer.cpython-34.pyc
│   │   │   ├── reference.py
│   │   │   ├── scatter.py
│   │   │   ├── series.py
│   │   │   └── writer.py
│   │   ├── comments
│   │   │   ├── comments.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── comments.cpython-34.pyc
│   │   │   └── __init__.cpython-34.pyc
│   │   ├── compat
│   │   │   ├── abc.py
│   │   │   ├── functools.py
│   │   │   ├── __init__.py
│   │   │   ├── itertools.py
│   │   │   ├── numbers.py
│   │   │   ├── odict.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── itertools.cpython-34.pyc
│   │   │   │   ├── numbers.cpython-34.pyc
│   │   │   │   └── strings.cpython-34.pyc
│   │   │   ├── singleton.py
│   │   │   └── strings.py
│   │   ├── conftest.py
│   │   ├── descriptors
│   │   │   ├── base.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-34.pyc
│   │   │   │   ├── excel.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   └── serialisable.cpython-34.pyc
│   │   │   ├── serialisable.py
│   │   │   └── slots.py
│   │   ├── drawing
│   │   │   ├── drawing.py
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   ├── drawing.cpython-34.pyc
│   │   │   └── __init__.cpython-34.pyc
│   │   ├── formatting
│   │   │   ├── formatting.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   └── rules.cpython-34.pyc
│   │   │   ├── rule.py
│   │   │   └── rules.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-34.pyc
│   │   ├── reader
│   │   │   ├── comments.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── comments.cpython-34.pyc
│   │   │   │   ├── excel.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── strings.cpython-34.pyc
│   │   │   │   ├── style.cpython-34.pyc
│   │   │   │   ├── workbook.cpython-34.pyc
│   │   │   │   └── worksheet.cpython-34.pyc
│   │   │   ├── strings.py
│   │   │   ├── style.py
│   │   │   ├── workbook.py
│   │   │   └── worksheet.py
│   │   ├── styles
│   │   │   ├── alignment.py
│   │   │   ├── borders.py
│   │   │   ├── colors.py
│   │   │   ├── differential.py
│   │   │   ├── fills.py
│   │   │   ├── fonts.py
│   │   │   ├── hashable.py
│   │   │   ├── __init__.py
│   │   │   ├── named_styles.py
│   │   │   ├── numbers.py
│   │   │   ├── protection.py
│   │   │   ├── proxy.py
│   │   │   ├── __pycache__
│   │   │   │   ├── alignment.cpython-34.pyc
│   │   │   │   ├── borders.cpython-34.pyc
│   │   │   │   ├── colors.cpython-34.pyc
│   │   │   │   ├── differential.cpython-34.pyc
│   │   │   │   ├── fills.cpython-34.pyc
│   │   │   │   ├── fonts.cpython-34.pyc
│   │   │   │   ├── hashable.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── named_styles.cpython-34.pyc
│   │   │   │   ├── numbers.cpython-34.pyc
│   │   │   │   ├── protection.cpython-34.pyc
│   │   │   │   ├── proxy.cpython-34.pyc
│   │   │   │   ├── styleable.cpython-34.pyc
│   │   │   │   └── style.cpython-34.pyc
│   │   │   ├── styleable.py
│   │   │   └── style.py
│   │   ├── utils
│   │   │   ├── datetime.py
│   │   │   ├── exceptions.py
│   │   │   ├── indexed_list.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── datetime.cpython-34.pyc
│   │   │   │   ├── exceptions.cpython-34.pyc
│   │   │   │   ├── indexed_list.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   └── units.cpython-34.pyc
│   │   │   └── units.py
│   │   ├── workbook
│   │   │   ├── __init__.py
│   │   │   ├── interface.py
│   │   │   ├── names
│   │   │   │   ├── external.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── named_range.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── external.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   └── named_range.cpython-34.pyc
│   │   │   ├── properties.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── properties.cpython-34.pyc
│   │   │   │   └── workbook.cpython-34.pyc
│   │   │   ├── read_only.py
│   │   │   ├── workbook.py
│   │   │   └── write_only.py
│   │   ├── worksheet
│   │   │   ├── datavalidation.py
│   │   │   ├── dimensions.py
│   │   │   ├── filters.py
│   │   │   ├── header_footer.py
│   │   │   ├── __init__.py
│   │   │   ├── interface.py
│   │   │   ├── iter_worksheet.py
│   │   │   ├── page.py
│   │   │   ├── pivot.py
│   │   │   ├── properties.py
│   │   │   ├── protection.py
│   │   │   ├── __pycache__
│   │   │   │   ├── datavalidation.cpython-34.pyc
│   │   │   │   ├── dimensions.cpython-34.pyc
│   │   │   │   ├── filters.cpython-34.pyc
│   │   │   │   ├── header_footer.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── iter_worksheet.cpython-34.pyc
│   │   │   │   ├── page.cpython-34.pyc
│   │   │   │   ├── properties.cpython-34.pyc
│   │   │   │   ├── protection.cpython-34.pyc
│   │   │   │   ├── relationship.cpython-34.pyc
│   │   │   │   ├── views.cpython-34.pyc
│   │   │   │   └── worksheet.cpython-34.pyc
│   │   │   ├── relationship.py
│   │   │   ├── views.py
│   │   │   └── worksheet.py
│   │   ├── writer
│   │   │   ├── comments.py
│   │   │   ├── drawings.py
│   │   │   ├── dump_worksheet.py
│   │   │   ├── etree_worksheet.py
│   │   │   ├── excel.py
│   │   │   ├── __init__.py
│   │   │   ├── lxml_worksheet.py
│   │   │   ├── __pycache__
│   │   │   │   ├── comments.cpython-34.pyc
│   │   │   │   ├── drawings.cpython-34.pyc
│   │   │   │   ├── dump_worksheet.cpython-34.pyc
│   │   │   │   ├── etree_worksheet.cpython-34.pyc
│   │   │   │   ├── excel.cpython-34.pyc
│   │   │   │   ├── __init__.cpython-34.pyc
│   │   │   │   ├── relations.cpython-34.pyc
│   │   │   │   ├── strings.cpython-34.pyc
│   │   │   │   ├── styles.cpython-34.pyc
│   │   │   │   ├── theme.cpython-34.pyc
│   │   │   │   ├── workbook.cpython-34.pyc
│   │   │   │   └── worksheet.cpython-34.pyc
│   │   │   ├── relations.py
│   │   │   ├── strings.py
│   │   │   ├── styles.py
│   │   │   ├── theme.py
│   │   │   ├── workbook.py
│   │   │   └── worksheet.py
│   │   └── xml
│   │   ├── constants.py
│   │   ├── functions.py
│   │   ├── __init__.py
│   │   ├── namespace.py
│   │   ├── __pycache__
│   │   │   ├── constants.cpython-34.pyc
│   │   │   ├── functions.cpython-34.pyc
│   │   │   ├── __init__.cpython-34.pyc
│   │   │   ├── namespace.cpython-34.pyc
│   │   │   └── xmlfile.cpython-34.pyc
│   │   └── xmlfile.py
│   ├── openpyxl.egg-info
│   │   ├── dependency_links.txt
│   │   ├── PKG-INFO
│   │   ├── requires.txt
│   │   ├── SOURCES.txt
│   │   └── top_level.txt
│   ├── PKG-INFO
│   ├── README.rst
│   ├── setup.cfg
│   ├── setup.py
│   └── TODO.rst
└── pybrain-master
└── pybrain-master
├── acknowledgements.txt
├── build
│   ├── bdist.win32
│   └── lib
│   └── pybrain
│   ├── auxiliary
│   │   ├── gaussprocess.py
│   │   ├── gradientdescent.py
│   │   ├── importancemixing.py
│   │   ├── __init__.py
│   │   ├── kmeans.py
│   │   └── pca.py
│   ├── datasets
│   │   ├── classification.py
│   │   ├── dataset.py
│   │   ├── importance.py
│   │   ├── __init__.py
│   │   ├── reinforcement.py
│   │   ├── sequential.py
│   │   ├── supervised.py
│   │   └── unsupervised.py
│   ├── __init__.py
│   ├── optimization
│   │   ├── distributionbased
│   │   │   ├── cmaes.py
│   │   │   ├── distributionbased.py
│   │   │   ├── fem.py
│   │   │   ├── __init__.py
│   │   │   ├── nes.py
│   │   │   ├── rank1.py
│   │   │   ├── snes.py
│   │   │   ├── ves.py
│   │   │   └── xnes.py
│   │   ├── finitedifference
│   │   │   ├── fd.py
│   │   │   ├── __init__.py
│   │   │   ├── pgpe.py
│   │   │   └── spsa.py
│   │   ├── hillclimber.py
│   │   ├── __init__.py
│   │   ├── memetic
│   │   │   ├── __init__.py
│   │   │   ├── innerinversememetic.py
│   │   │   ├── innermemetic.py
│   │   │   ├── inversememetic.py
│   │   │   └── memetic.py
│   │   ├── neldermead.py
│   │   ├── optimizer.py
│   │   ├── populationbased
│   │   │   ├── coevolution
│   │   │   │   ├── coevolution.py
│   │   │   │   ├── competitivecoevolution.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── multipopulationcoevolution.py
│   │   │   ├── es.py
│   │   │   ├── evolution.py
│   │   │   ├── ga.py
│   │   │   ├── __init__.py
│   │   │   ├── multiobjective
│   │   │   │   ├── constnsga2.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── nsga2.py
│   │   │   └── pso.py
│   │   └── randomsearch.py
│   ├── rl
│   │   ├── agents
│   │   │   ├── agent.py
│   │   │   ├── __init__.py
│   │   │   ├── learning.py
│   │   │   ├── linearfa.py
│   │   │   ├── logging.py
│   │   │   └── optimization.py
│   │   ├── environments
│   │   │   ├── cartpole
│   │   │   │   ├── balancetask.py
│   │   │   │   ├── cartpole.py
│   │   │   │   ├── doublepole.py
│   │   │   │   ├── fast_version
│   │   │   │   │   ├── cartpolecompile.py
│   │   │   │   │   ├── cartpoleenv.py
│   │   │   │   │   └── __init__.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── nonmarkovdoublepole.py
│   │   │   │   ├── nonmarkovpole.py
│   │   │   │   └── renderer.py
│   │   │   ├── classic
│   │   │   │   ├── acrobot.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mountaincar.py
│   │   │   │   └── xor.py
│   │   │   ├── environment.py
│   │   │   ├── episodic.py
│   │   │   ├── fitnessevaluator.py
│   │   │   ├── flexcube
│   │   │   │   ├── environment.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── masspoint.py
│   │   │   │   ├── objects3d.py
│   │   │   │   ├── sensors.py
│   │   │   │   ├── tasks.py
│   │   │   │   └── viewer.py
│   │   │   ├── functions
│   │   │   │   ├── bbob2010.py
│   │   │   │   ├── function.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lennardjones.py
│   │   │   │   ├── multimodal.py
│   │   │   │   ├── multiobjective.py
│   │   │   │   ├── transformations.py
│   │   │   │   ├── unbounded.py
│   │   │   │   └── unimodal.py
│   │   │   ├── graphical.py
│   │   │   ├── __init__.py
│   │   │   ├── mazes
│   │   │   │   ├── __init__.py
│   │   │   │   ├── maze.py
│   │   │   │   ├── polarmaze.py
│   │   │   │   └── tasks
│   │   │   │   ├── cheesemaze.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── maze4x3.py
│   │   │   │   ├── maze89state.py
│   │   │   │   ├── maze.py
│   │   │   │   ├── mdp.py
│   │   │   │   ├── pomdp.py
│   │   │   │   ├── shuttle.py
│   │   │   │   ├── tiger.py
│   │   │   │   └── tmaze.py
│   │   │   ├── ode
│   │   │   │   ├── actuators.py
│   │   │   │   ├── environment.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── instances
│   │   │   │   │   ├── acrobot.py
│   │   │   │   │   ├── ccrl.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── johnnie.py
│   │   │   │   ├── models
│   │   │   │   │   ├── acrobot.xode
│   │   │   │   │   ├── acroside.xode
│   │   │   │   │   ├── acrotop.xode
│   │   │   │   │   ├── arm.xode
│   │   │   │   │   ├── box-sphere.xode
│   │   │   │   │   ├── ccrlGlas.xode
│   │   │   │   │   ├── ccrlPlate.xode
│   │   │   │   │   ├── ccrlTable.xode
│   │   │   │   │   ├── crawler.xode
│   │   │   │   │   ├── hand.xode
│   │   │   │   │   ├── johnnie-heavyarms.xode
│   │   │   │   │   ├── johnnie.xode
│   │   │   │   │   ├── octacrawl.xode
│   │   │   │   │   └── sphere-walker.xode
│   │   │   │   ├── sensors.py
│   │   │   │   ├── tasks
│   │   │   │   │   ├── acrobot.py
│   │   │   │   │   ├── ccrl.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── johnnie.py
│   │   │   │   ├── tools
│   │   │   │   │   ├── configgrab.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── mathhelpers.py
│   │   │   │   │   ├── xmltools.py
│   │   │   │   │   └── xodetools.py
│   │   │   │   └── viewer.py
│   │   │   ├── renderer.py
│   │   │   ├── serverinterface.py
│   │   │   ├── shipsteer
│   │   │   │   ├── __init__.py
│   │   │   │   ├── northwardtask.py
│   │   │   │   ├── shipsteer.py
│   │   │   │   └── viewer.py
│   │   │   ├── simple
│   │   │   │   ├── environment.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── renderer.py
│   │   │   │   └── tasks.py
│   │   │   ├── simplerace
│   │   │   │   ├── __init__.py
│   │   │   │   ├── simplecontroller.py
│   │   │   │   ├── simpleracetask.py
│   │   │   │   └── simpleracetcp.py
│   │   │   ├── task.py
│   │   │   └── twoplayergames
│   │   │   ├── capturegameplayers
│   │   │   │   ├── captureplayer.py
│   │   │   │   ├── clientwrapper.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── killing.py
│   │   │   │   ├── moduledecision.py
│   │   │   │   ├── nonsuicide.py
│   │   │   │   └── randomplayer.py
│   │   │   ├── capturegame.py
│   │   │   ├── gomokuplayers
│   │   │   │   ├── gomokuplayer.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── killing.py
│   │   │   │   ├── moduledecision.py
│   │   │   │   └── randomplayer.py
│   │   │   ├── gomoku.py
│   │   │   ├── __init__.py
│   │   │   ├── pente.py
│   │   │   ├── tasks
│   │   │   │   ├── capturetask.py
│   │   │   │   ├── gomokutask.py
│   │   │   │   ├── handicaptask.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── pentetask.py
│   │   │   │   ├── relativegomokutask.py
│   │   │   │   └── relativetask.py
│   │   │   └── twoplayergame.py
│   │   ├── experiments
│   │   │   ├── continuous.py
│   │   │   ├── episodic.py
│   │   │   ├── experiment.py
│   │   │   ├── __init__.py
│   │   │   ├── queued.py
│   │   │   └── tournament.py
│   │   ├── explorers
│   │   │   ├── continuous
│   │   │   │   ├── __init__.py
│   │   │   │   ├── normal.py
│   │   │   │   └── sde.py
│   │   │   ├── discrete
│   │   │   │   ├── boltzmann.py
│   │   │   │   ├── discrete.py
│   │   │   │   ├── discretesde.py
│   │   │   │   ├── egreedy.py
│   │   │   │   └── __init__.py
│   │   │   ├── explorer.py
│   │   │   └── __init__.py
│   │   ├── __init__.py
│   │   └── learners
│   │   ├── directsearch
│   │   │   ├── directsearch.py
│   │   │   ├── enac.py
│   │   │   ├── gpomdp.py
│   │   │   ├── __init__.py
│   │   │   ├── policygradient.py
│   │   │   ├── reinforce.py
│   │   │   └── rwr.py
│   │   ├── __init__.py
│   │   ├── learner.py
│   │   ├── meta
│   │   │   ├── __init__.py
│   │   │   ├── levinsearch.py
│   │   │   └── meta.py
│   │   ├── modelbased
│   │   │   ├── __init__.py
│   │   │   ├── leastsquares.py
│   │   │   └── policyiteration.py
│   │   └── valuebased
│   │   ├── __init__.py
│   │   ├── interface.py
│   │   ├── linearfa.py
│   │   ├── nfq.py
│   │   ├── qlambda.py
│   │   ├── q.py
│   │   ├── sarsa.py
│   │   └── valuebased.py
│   ├── structure
│   │   ├── connections
│   │   │   ├── connection.py
│   │   │   ├── fullnotself.py
│   │   │   ├── full.py
│   │   │   ├── identity.py
│   │   │   ├── __init__.py
│   │   │   ├── linear.py
│   │   │   ├── permutation.py
│   │   │   ├── shared.py
│   │   │   └── subsampling.py
│   │   ├── evolvables
│   │   │   ├── cheaplycopiable.py
│   │   │   ├── evolvable.py
│   │   │   ├── __init__.py
│   │   │   ├── maskedmodule.py
│   │   │   ├── maskedparameters.py
│   │   │   └── topology.py
│   │   ├── __init__.py
│   │   ├── modulemesh.py
│   │   ├── modules
│   │   │   ├── biasunit.py
│   │   │   ├── evolinonetwork.py
│   │   │   ├── gate.py
│   │   │   ├── gaussianlayer.py
│   │   │   ├── __init__.py
│   │   │   ├── kohonen.py
│   │   │   ├── linearlayer.py
│   │   │   ├── lstm.py
│   │   │   ├── mdlstm.py
│   │   │   ├── mdrnnlayer.py
│   │   │   ├── mixturedensity.py
│   │   │   ├── module.py
│   │   │   ├── neuronlayer.py
│   │   │   ├── relulayer.py
│   │   │   ├── samplelayer.py
│   │   │   ├── sigmoidlayer.py
│   │   │   ├── softmax.py
│   │   │   ├── softsign.py
│   │   │   ├── statedependentlayer.py
│   │   │   ├── svmunit.py
│   │   │   ├── table.py
│   │   │   └── tanhlayer.py
│   │   ├── moduleslice.py
│   │   ├── networks
│   │   │   ├── bidirectional.py
│   │   │   ├── borderswiping.py
│   │   │   ├── convolutional.py
│   │   │   ├── custom
│   │   │   │   ├── capturegame.py
│   │   │   │   ├── convboard.py
│   │   │   │   └── __init__.py
│   │   │   ├── feedforward.py
│   │   │   ├── __init__.py
│   │   │   ├── mdrnn.py
│   │   │   ├── multidimensional.py
│   │   │   ├── network.py
│   │   │   ├── neurondecomposable.py
│   │   │   ├── rbm.py
│   │   │   ├── recurrent.py
│   │   │   └── swiping.py
│   │   └── parametercontainer.py
│   ├── supervised
│   │   ├── evolino
│   │   │   ├── filter.py
│   │   │   ├── gfilter.py
│   │   │   ├── gindividual.py
│   │   │   ├── gpopulation.py
│   │   │   ├── individual.py
│   │   │   ├── __init__.py
│   │   │   ├── networkwrapper.py
│   │   │   ├── population.py
│   │   │   └── variate.py
│   │   ├── __init__.py
│   │   ├── knn
│   │   │   ├── __init__.py
│   │   │   └── lsh
│   │   │   ├── __init__.py
│   │   │   ├── minhash.py
│   │   │   └── nearoptimal.py
│   │   └── trainers
│   │   ├── backprop.py
│   │   ├── evolino.py
│   │   ├── __init__.py
│   │   ├── mixturedensity.py
│   │   ├── rprop.py
│   │   ├── svmtrainer.py
│   │   └── trainer.py
│   ├── tests
│   │   ├── auxiliary.py
│   │   ├── helpers.py
│   │   ├── __init__.py
│   │   ├── optimizationtest.py
│   │   ├── runtests.py
│   │   ├── testsuites.py
│   │   └── unittests
│   │   ├── auxiliary
│   │   │   ├── __init__.py
│   │   │   └── test_pca.py
│   │   ├── datasets
│   │   │   ├── __init__.py
│   │   │   └── test_datasets_datasets.py
│   │   ├── __init__.py
│   │   ├── optimization
│   │   │   ├── __init__.py
│   │   │   └── populationbased
│   │   │   ├── __init__.py
│   │   │   └── test_pso_ring.py
│   │   ├── rl
│   │   │   ├── environments
│   │   │   │   ├── __init__.py
│   │   │   │   └── twoplayergames
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_capture_game.py
│   │   │   │   └── test_pente.py
│   │   │   └── __init__.py
│   │   ├── structure
│   │   │   ├── connections
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_shared_connections.py
│   │   │   │   ├── test_sliced_connections.py
│   │   │   │   └── test_subsampling_connection.py
│   │   │   ├── __init__.py
│   │   │   ├── modules
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_peephole_lstm.py
│   │   │   │   ├── test_peephole_mdlstm.py
│   │   │   │   ├── test_samplelayer.py
│   │   │   │   ├── test_simple_lstm_network.py
│   │   │   │   └── test_simple_mdlstm.py
│   │   │   └── networks
│   │   │   ├── custom
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_capturegame_network.py
│   │   │   │   └── test_convolutional_nets.py
│   │   │   ├── __init__.py
│   │   │   ├── test_bidirectional_network.py
│   │   │   ├── test_borderswipingnetwork.py
│   │   │   ├── test_cyclic_network.py
│   │   │   ├── _test_mdrnn.py
│   │   │   ├── test_nested_ffn_and_rnn.py
│   │   │   ├── test_nested_network.py
│   │   │   ├── test_network_decomposition.py
│   │   │   ├── test_network_forward_backward.py
│   │   │   ├── test_network_sort.py
│   │   │   ├── test_no_gravity_network.py
│   │   │   ├── _test_rbm.py
│   │   │   ├── test_recurrent_network.py
│   │   │   └── test_swiping_network.py
│   │   ├── supervised
│   │   │   ├── __init__.py
│   │   │   ├── knn
│   │   │   │   ├── __init__.py
│   │   │   │   └── lsh
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_minhash.py
│   │   │   │   └── test_nearoptimal.py
│   │   │   └── trainers
│   │   │   ├── __init__.py
│   │   │   ├── test_backprop.py
│   │   │   ├── test_evolino.py
│   │   │   └── test_rprop.py
│   │   ├── _test_equivalence_to_ctypes.py
│   │   ├── test_utilities_dictionaries.py
│   │   ├── test_utilities_flood.py
│   │   ├── test_utilities_foundafter.py
│   │   ├── test_utilities.py
│   │   ├── test_utilities_reachable.py
│   │   ├── tools
│   │   │   ├── __init__.py
│   │   │   ├── test_ibp_leftordered.py
│   │   │   └── test_rlgluebridge.py
│   │   └── unsupervised
│   │   └── __init__.py
│   ├── tools
│   │   ├── aptativeresampling.py
│   │   ├── benchmark.py
│   │   ├── customxml
│   │   │   ├── handling.py
│   │   │   ├── __init__.py
│   │   │   ├── networkreader.py
│   │   │   └── networkwriter.py
│   │   ├── datasets
│   │   │   ├── __init__.py
│   │   │   └── mnist.py
│   │   ├── datasettools.py
│   │   ├── example_tools.py
│   │   ├── filehandling.py
│   │   ├── fisher.py
│   │   ├── functions.py
│   │   ├── gridsearch.py
│   │   ├── ibp.py
│   │   ├── __init__.py
│   │   ├── kwargsprocessor.py
│   │   ├── mixtures
│   │   │   ├── __init__.py
│   │   │   ├── mixtureofgaussian.py
│   │   │   └── mogpuremax.py
│   │   ├── networking
│   │   │   ├── __init__.py
│   │   │   └── udpconnection.py
│   │   ├── neuralnets.py
│   │   ├── nondominated.py
│   │   ├── plotting
│   │   │   ├── ciaoplot.py
│   │   │   ├── classification.py
│   │   │   ├── colormaps.py
│   │   │   ├── fitnesslandscapes.py
│   │   │   ├── fitnessprogression.py
│   │   │   ├── __init__.py
│   │   │   ├── multiline.py
│   │   │   └── quickvariations.py
│   │   ├── rankingfunctions.py
│   │   ├── rlgluebridge.py
│   │   ├── shortcuts.py
│   │   ├── svmdata.py
│   │   └── validation.py
│   ├── unsupervised
│   │   ├── __init__.py
│   │   └── trainers
│   │   ├── deepbelief.py
│   │   ├── __init__.py
│   │   └── rbm.py
│   └── utilities.py
├── dist
│   └── PyBrain-0.3.3-py3.4.egg
├── docs
│   ├── code2tut.py
│   ├── documentation.pdf
│   ├── html
│   │   ├── advanced
│   │   │   ├── fast-pybrain.html
│   │   │   └── ode.html
│   │   ├── api
│   │   │   ├── datasets
│   │   │   │   ├── classificationdataset.html
│   │   │   │   ├── importancedatasets.html
│   │   │   │   ├── sequentialdataset.html
│   │   │   │   └── superviseddataset.html
│   │   │   ├── optimization
│   │   │   │   └── optimization.html
│   │   │   ├── rl
│   │   │   │   ├── actionvalues.html
│   │   │   │   ├── agents.html
│   │   │   │   ├── experiments.html
│   │   │   │   ├── explorers.html
│   │   │   │   ├── learners.html
│   │   │   │   └── tasks.html
│   │   │   ├── structure
│   │   │   │   ├── connections.html
│   │   │   │   ├── evolvables.html
│   │   │   │   ├── modules.html
│   │   │   │   └── networks.html
│   │   │   ├── supervised
│   │   │   │   ├── knn
│   │   │   │   │   └── lsh
│   │   │   │   │   └── nearoptimal.html
│   │   │   │   ├── svm.html
│   │   │   │   └── trainers.html
│   │   │   ├── tools.html
│   │   │   └── utilities.html
│   │   ├── genindex.html
│   │   ├── _images
│   │   │   ├── dataprocessing_flowchart.jpg
│   │   │   ├── math
│   │   │   │   ├── 0dda5d9cc1f37a095f591d50370589b47e20111c.png
│   │   │   │   └── eb2acfb40e59ad63c373e5fb92d05072836ea7e6.png
│   │   │   └── rl.png
│   │   ├── index.html
│   │   ├── modindex.html
│   │   ├── objects.inv
│   │   ├── quickstart
│   │   │   ├── dataset.html
│   │   │   ├── network.html
│   │   │   └── training.html
│   │   ├── search.html
│   │   ├── searchindex.js
│   │   ├── _sources
│   │   │   ├── advanced
│   │   │   │   ├── fast-pybrain.txt
│   │   │   │   └── ode.txt
│   │   │   ├── api
│   │   │   │   ├── datasets
│   │   │   │   │   ├── classificationdataset.txt
│   │   │   │   │   ├── importancedatasets.txt
│   │   │   │   │   ├── sequentialdataset.txt
│   │   │   │   │   └── superviseddataset.txt
│   │   │   │   ├── optimization
│   │   │   │   │   └── optimization.txt
│   │   │   │   ├── rl
│   │   │   │   │   ├── actionvalues.txt
│   │   │   │   │   ├── agents.txt
│   │   │   │   │   ├── experiments.txt
│   │   │   │   │   ├── explorers.txt
│   │   │   │   │   ├── learners.txt
│   │   │   │   │   └── tasks.txt
│   │   │   │   ├── structure
│   │   │   │   │   ├── connections.txt
│   │   │   │   │   ├── evolvables.txt
│   │   │   │   │   ├── modules.txt
│   │   │   │   │   └── networks.txt
│   │   │   │   ├── supervised
│   │   │   │   │   ├── knn
│   │   │   │   │   │   └── lsh
│   │   │   │   │   │   └── nearoptimal.txt
│   │   │   │   │   ├── svm.txt
│   │   │   │   │   └── trainers.txt
│   │   │   │   ├── tools.txt
│   │   │   │   └── utilities.txt
│   │   │   ├── index.txt
│   │   │   ├── quickstart
│   │   │   │   ├── dataset.txt
│   │   │   │   ├── network.txt
│   │   │   │   └── training.txt
│   │   │   └── tutorial
│   │   │   ├── datasets.txt
│   │   │   ├── extending-structure.txt
│   │   │   ├── fnn.txt
│   │   │   ├── intro.txt
│   │   │   ├── netmodcon.txt
│   │   │   ├── optimization.txt
│   │   │   └── reinforcement-learning.txt
│   │   ├── _static
│   │   │   ├── basic.css
│   │   │   ├── default.css
│   │   │   ├── doctools.js
│   │   │   ├── file.png
│   │   │   ├── jquery.js
│   │   │   ├── minus.png
│   │   │   ├── plus.png
│   │   │   ├── pybrain_logo.gif
│   │   │   ├── pygments.css
│   │   │   └── searchtools.js
│   │   └── tutorial
│   │   ├── datasets.html
│   │   ├── extending-structure.html
│   │   ├── fnn.html
│   │   ├── intro.html
│   │   ├── netmodcon.html
│   │   ├── optimization.html
│   │   └── reinforcement-learning.html
│   ├── sphinx
│   │   ├── advanced
│   │   │   ├── fast-pybrain.txt
│   │   │   └── ode.txt
│   │   ├── api
│   │   │   ├── datasets
│   │   │   │   ├── classificationdataset.txt
│   │   │   │   ├── importancedatasets.txt
│   │   │   │   ├── sequentialdataset.txt
│   │   │   │   └── superviseddataset.txt
│   │   │   ├── optimization
│   │   │   │   └── optimization.txt
│   │   │   ├── rl
│   │   │   │   ├── actionvalues.txt
│   │   │   │   ├── agents.txt
│   │   │   │   ├── experiments.txt
│   │   │   │   ├── explorers.txt
│   │   │   │   ├── learners.txt
│   │   │   │   └── tasks.txt
│   │   │   ├── structure
│   │   │   │   ├── connections.txt
│   │   │   │   ├── evolvables.txt
│   │   │   │   ├── modules.txt
│   │   │   │   └── networks.txt
│   │   │   ├── supervised
│   │   │   │   ├── knn
│   │   │   │   │   └── lsh
│   │   │   │   │   └── nearoptimal.txt
│   │   │   │   ├── svm.txt
│   │   │   │   └── trainers.txt
│   │   │   ├── tools.txt
│   │   │   └── utilities.txt
│   │   ├── autodoc_hack.py
│   │   ├── build.bat
│   │   ├── conf.py
│   │   ├── index.txt
│   │   ├── Makefile
│   │   ├── pics
│   │   │   ├── buildNetwork.jpg
│   │   │   ├── dataprocessing_flowchart.jpg
│   │   │   ├── pybrain_logo.gif
│   │   │   └── rl.png
│   │   ├── quickstart
│   │   │   ├── dataset.txt
│   │   │   ├── network.txt
│   │   │   └── training.txt
│   │   ├── _static
│   │   └── tutorial
│   │   ├── datasets.txt
│   │   ├── extending-structure.txt
│   │   ├── fnn.txt
│   │   ├── intro.txt
│   │   ├── netmodcon.txt
│   │   ├── optimization.txt
│   │   └── reinforcement-learning.txt
│   └── tutorials
│   ├── blackboxoptimization.py
│   ├── fnn.py
│   ├── networks.py
│   └── rl.py
├── examples
│   ├── optimization
│   │   ├── benchmarkplots.py
│   │   ├── multiobjective
│   │   │   ├── constnsga2jpq.py
│   │   │   ├── nsga2jpq.py
│   │   │   ├── nsga2.py
│   │   │   └── readme.txt
│   │   ├── optimizerinterface.py
│   │   └── optimizers_for_rl.py
│   ├── rl
│   │   ├── environments
│   │   │   ├── capturegame
│   │   │   │   ├── evolvingplayer.py
│   │   │   │   ├── minitournament.py
│   │   │   │   └── pente.py
│   │   │   ├── cartpole
│   │   │   │   ├── cart_all.py
│   │   │   │   ├── cart_cma.py
│   │   │   │   ├── cart_enac.py
│   │   │   │   ├── cart_fem.py
│   │   │   │   ├── cart_nes.py
│   │   │   │   ├── cart_pgpe.py
│   │   │   │   ├── cart_reinf.py
│   │   │   │   └── play_cartpole.py
│   │   │   ├── flexcube
│   │   │   │   ├── direction.info
│   │   │   │   ├── direction.wgt
│   │   │   │   ├── flexcube_pgpe.py
│   │   │   │   ├── flexcube_spsa.py
│   │   │   │   ├── jump.info
│   │   │   │   ├── jump.wgt
│   │   │   │   ├── walk.info
│   │   │   │   └── walk.wgt
│   │   │   ├── linear_fa
│   │   │   │   ├── bicycle.py
│   │   │   │   └── xor.py
│   │   │   ├── maze
│   │   │   │   └── td.py
│   │   │   ├── ode
│   │   │   │   ├── acrobot_fd.py
│   │   │   │   ├── acrobot_pgpe.py
│   │   │   │   ├── ccrl_glass_pgpe.py
│   │   │   │   ├── ccrl_plate_pgpe.py
│   │   │   │   ├── johnnie_pgpe.py
│   │   │   │   └── johnnie_reinforce.py
│   │   │   └── shipsteer
│   │   │   ├── shipbench_pgpe.py
│   │   │   └── shipbench_sde.py
│   │   └── valuebased
│   │   ├── nfq.py
│   │   └── td.py
│   ├── supervised
│   │   ├── backprop
│   │   │   ├── backpropanbncn.py
│   │   │   ├── backpropxor.py
│   │   │   ├── datasets
│   │   │   │   ├── anbncn.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── parity.py
│   │   │   │   └── xor.py
│   │   │   └── parityrnn.py
│   │   ├── evolino
│   │   │   ├── lib
│   │   │   │   ├── data_generator.py
│   │   │   │   └── __init__.py
│   │   │   └── superimposed_sine.py
│   │   ├── neuralnets+svm
│   │   │   ├── datasets
│   │   │   │   ├── datagenerator.py
│   │   │   │   └── __init__.py
│   │   │   ├── example_fnn.py
│   │   │   ├── example_mixturedensity.py
│   │   │   ├── example_rnn.py
│   │   │   ├── example_svm.py
│   │   │   └── __init__.py
│   │   └── test_network_read_write
│   │   ├── jpq2layersReader.py
│   │   ├── jpq2layersWriter.py
│   │   ├── myparam2.txt
│   │   ├── readme.txt
│   │   └── trndata
│   └── unsupervised
│   ├── gp.py
│   ├── kohonen.py
│   ├── lsh.py
│   └── rbm.py
├── LICENSE
├── pybrain
│   ├── auxiliary
│   │   ├── gaussprocess.py
│   │   ├── gradientdescent.py
│   │   ├── importancemixing.py
│   │   ├── __init__.py
│   │   ├── kmeans.py
│   │   └── pca.py
│   ├── datasets
│   │   ├── classification.py
│   │   ├── dataset.py
│   │   ├── importance.py
│   │   ├── __init__.py
│   │   ├── reinforcement.py
│   │   ├── sequential.py
│   │   ├── supervised.py
│   │   └── unsupervised.py
│   ├── __init__.py
│   ├── optimization
│   │   ├── distributionbased
│   │   │   ├── cmaes.py
│   │   │   ├── distributionbased.py
│   │   │   ├── fem.py
│   │   │   ├── __init__.py
│   │   │   ├── nes.py
│   │   │   ├── rank1.py
│   │   │   ├── snes.py
│   │   │   ├── ves.py
│   │   │   └── xnes.py
│   │   ├── finitedifference
│   │   │   ├── fd.py
│   │   │   ├── __init__.py
│   │   │   ├── pgpe.py
│   │   │   └── spsa.py
│   │   ├── hillclimber.py
│   │   ├── __init__.py
│   │   ├── memetic
│   │   │   ├── __init__.py
│   │   │   ├── innerinversememetic.py
│   │   │   ├── innermemetic.py
│   │   │   ├── inversememetic.py
│   │   │   └── memetic.py
│   │   ├── neldermead.py
│   │   ├── optimizer.py
│   │   ├── populationbased
│   │   │   ├── coevolution
│   │   │   │   ├── coevolution.py
│   │   │   │   ├── competitivecoevolution.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── multipopulationcoevolution.py
│   │   │   ├── es.py
│   │   │   ├── evolution.py
│   │   │   ├── ga.py
│   │   │   ├── __init__.py
│   │   │   ├── multiobjective
│   │   │   │   ├── constnsga2.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── nsga2.py
│   │   │   └── pso.py
│   │   └── randomsearch.py
│   ├── rl
│   │   ├── agents
│   │   │   ├── agent.py
│   │   │   ├── __init__.py
│   │   │   ├── learning.py
│   │   │   ├── linearfa.py
│   │   │   ├── logging.py
│   │   │   └── optimization.py
│   │   ├── environments
│   │   │   ├── cartpole
│   │   │   │   ├── balancetask.py
│   │   │   │   ├── cartpole.py
│   │   │   │   ├── doublepole.py
│   │   │   │   ├── fast_version
│   │   │   │   │   ├── cartpolecompile.py
│   │   │   │   │   ├── cartpole.cpp
│   │   │   │   │   ├── cartpoleenv.py
│   │   │   │   │   ├── cartpole.h
│   │   │   │   │   ├── cartpolewrap.pyx
│   │   │   │   │   └── __init__.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── nonmarkovdoublepole.py
│   │   │   │   ├── nonmarkovpole.py
│   │   │   │   └── renderer.py
│   │   │   ├── classic
│   │   │   │   ├── acrobot.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── mountaincar.py
│   │   │   │   └── xor.py
│   │   │   ├── environment.py
│   │   │   ├── episodic.py
│   │   │   ├── fitnessevaluator.py
│   │   │   ├── flexcube
│   │   │   │   ├── environment.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── masspoint.py
│   │   │   │   ├── objects3d.py
│   │   │   │   ├── sensors.py
│   │   │   │   ├── tasks.py
│   │   │   │   └── viewer.py
│   │   │   ├── functions
│   │   │   │   ├── bbob2010.py
│   │   │   │   ├── function.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lennardjones.py
│   │   │   │   ├── multimodal.py
│   │   │   │   ├── multiobjective.py
│   │   │   │   ├── transformations.py
│   │   │   │   ├── unbounded.py
│   │   │   │   └── unimodal.py
│   │   │   ├── graphical.py
│   │   │   ├── __init__.py
│   │   │   ├── mazes
│   │   │   │   ├── __init__.py
│   │   │   │   ├── maze.py
│   │   │   │   ├── polarmaze.py
│   │   │   │   └── tasks
│   │   │   │   ├── cheesemaze.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── maze4x3.py
│   │   │   │   ├── maze89state.py
│   │   │   │   ├── maze.py
│   │   │   │   ├── mdp.py
│   │   │   │   ├── pomdp.py
│   │   │   │   ├── shuttle.py
│   │   │   │   ├── tiger.py
│   │   │   │   └── tmaze.py
│   │   │   ├── ode
│   │   │   │   ├── actuators.py
│   │   │   │   ├── environment.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── instances
│   │   │   │   │   ├── acrobot.py
│   │   │   │   │   ├── ccrl.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── johnnie.py
│   │   │   │   ├── models
│   │   │   │   │   ├── acrobot.xode
│   │   │   │   │   ├── acroside.xode
│   │   │   │   │   ├── acrotop.xode
│   │   │   │   │   ├── arm.xode
│   │   │   │   │   ├── box-sphere.xode
│   │   │   │   │   ├── ccrlGlas.xode
│   │   │   │   │   ├── ccrlPlate.xode
│   │   │   │   │   ├── ccrlTable.xode
│   │   │   │   │   ├── crawler.xode
│   │   │   │   │   ├── hand.xode
│   │   │   │   │   ├── johnnie-heavyarms.xode
│   │   │   │   │   ├── johnnie.xode
│   │   │   │   │   ├── octacrawl.xode
│   │   │   │   │   └── sphere-walker.xode
│   │   │   │   ├── sensors.py
│   │   │   │   ├── tasks
│   │   │   │   │   ├── acrobot.py
│   │   │   │   │   ├── ccrl.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── johnnie.py
│   │   │   │   ├── tools
│   │   │   │   │   ├── configgrab.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── makevideo.sh
│   │   │   │   │   ├── mathhelpers.py
│   │   │   │   │   ├── xmltools.py
│   │   │   │   │   └── xodetools.py
│   │   │   │   ├── viewer.py
│   │   │   │   └── xode_changes
│   │   │   │   ├── body.py
│   │   │   │   └── geom.py
│   │   │   ├── renderer.py
│   │   │   ├── serverinterface.py
│   │   │   ├── shipsteer
│   │   │   │   ├── __init__.py
│   │   │   │   ├── northwardtask.py
│   │   │   │   ├── shipsteer.py
│   │   │   │   └── viewer.py
│   │   │   ├── simple
│   │   │   │   ├── environment.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── renderer.py
│   │   │   │   └── tasks.py
│   │   │   ├── simplerace
│   │   │   │   ├── __init__.py
│   │   │   │   ├── simplecontroller.py
│   │   │   │   ├── simpleracetask.py
│   │   │   │   └── simpleracetcp.py
│   │   │   ├── task.py
│   │   │   └── twoplayergames
│   │   │   ├── capturegameplayers
│   │   │   │   ├── captureplayer.py
│   │   │   │   ├── clientwrapper.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── killing.py
│   │   │   │   ├── moduledecision.py
│   │   │   │   ├── nonsuicide.py
│   │   │   │   └── randomplayer.py
│   │   │   ├── capturegame.py
│   │   │   ├── gomokuplayers
│   │   │   │   ├── gomokuplayer.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── killing.py
│   │   │   │   ├── moduledecision.py
│   │   │   │   └── randomplayer.py
│   │   │   ├── gomoku.py
│   │   │   ├── __init__.py
│   │   │   ├── pente.py
│   │   │   ├── tasks
│   │   │   │   ├── capturetask.py
│   │   │   │   ├── gomokutask.py
│   │   │   │   ├── handicaptask.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── pentetask.py
│   │   │   │   ├── relativegomokutask.py
│   │   │   │   └── relativetask.py
│   │   │   └── twoplayergame.py
│   │   ├── experiments
│   │   │   ├── continuous.py
│   │   │   ├── episodic.py
│   │   │   ├── experiment.py
│   │   │   ├── __init__.py
│   │   │   ├── queued.py
│   │   │   └── tournament.py
│   │   ├── explorers
│   │   │   ├── continuous
│   │   │   │   ├── __init__.py
│   │   │   │   ├── normal.py
│   │   │   │   └── sde.py
│   │   │   ├── discrete
│   │   │   │   ├── boltzmann.py
│   │   │   │   ├── discrete.py
│   │   │   │   ├── discretesde.py
│   │   │   │   ├── egreedy.py
│   │   │   │   └── __init__.py
│   │   │   ├── explorer.py
│   │   │   └── __init__.py
│   │   ├── __init__.py
│   │   └── learners
│   │   ├── directsearch
│   │   │   ├── directsearch.py
│   │   │   ├── enac.py
│   │   │   ├── gpomdp.py
│   │   │   ├── __init__.py
│   │   │   ├── policygradient.py
│   │   │   ├── reinforce.py
│   │   │   └── rwr.py
│   │   ├── __init__.py
│   │   ├── learner.py
│   │   ├── meta
│   │   │   ├── __init__.py
│   │   │   ├── levinsearch.py
│   │   │   └── meta.py
│   │   ├── modelbased
│   │   │   ├── __init__.py
│   │   │   ├── leastsquares.py
│   │   │   └── policyiteration.py
│   │   └── valuebased
│   │   ├── __init__.py
│   │   ├── interface.py
│   │   ├── linearfa.py
│   │   ├── nfq.py
│   │   ├── qlambda.py
│   │   ├── q.py
│   │   ├── sarsa.py
│   │   └── valuebased.py
│   ├── structure
│   │   ├── connections
│   │   │   ├── connection.py
│   │   │   ├── fullnotself.py
│   │   │   ├── full.py
│   │   │   ├── identity.py
│   │   │   ├── __init__.py
│   │   │   ├── linear.py
│   │   │   ├── permutation.py
│   │   │   ├── shared.py
│   │   │   └── subsampling.py
│   │   ├── evolvables
│   │   │   ├── cheaplycopiable.py
│   │   │   ├── evolvable.py
│   │   │   ├── __init__.py
│   │   │   ├── maskedmodule.py
│   │   │   ├── maskedparameters.py
│   │   │   └── topology.py
│   │   ├── __init__.py
│   │   ├── modulemesh.py
│   │   ├── modules
│   │   │   ├── biasunit.py
│   │   │   ├── evolinonetwork.py
│   │   │   ├── gate.py
│   │   │   ├── gaussianlayer.py
│   │   │   ├── __init__.py
│   │   │   ├── kohonen.py
│   │   │   ├── linearlayer.py
│   │   │   ├── lstm.py
│   │   │   ├── mdlstm.py
│   │   │   ├── mdrnnlayer.py
│   │   │   ├── mixturedensity.py
│   │   │   ├── module.py
│   │   │   ├── neuronlayer.py
│   │   │   ├── relulayer.py
│   │   │   ├── samplelayer.py
│   │   │   ├── sigmoidlayer.py
│   │   │   ├── softmax.py
│   │   │   ├── softsign.py
│   │   │   ├── statedependentlayer.py
│   │   │   ├── svmunit.py
│   │   │   ├── table.py
│   │   │   └── tanhlayer.py
│   │   ├── moduleslice.py
│   │   ├── networks
│   │   │   ├── bidirectional.py
│   │   │   ├── borderswiping.py
│   │   │   ├── convolutional.py
│   │   │   ├── custom
│   │   │   │   ├── capturegame.py
│   │   │   │   ├── convboard.py
│   │   │   │   └── __init__.py
│   │   │   ├── feedforward.py
│   │   │   ├── __init__.py
│   │   │   ├── mdrnn.py
│   │   │   ├── multidimensional.py
│   │   │   ├── network.py
│   │   │   ├── neurondecomposable.py
│   │   │   ├── rbm.py
│   │   │   ├── recurrent.py
│   │   │   └── swiping.py
│   │   └── parametercontainer.py
│   ├── supervised
│   │   ├── evolino
│   │   │   ├── filter.py
│   │   │   ├── gfilter.py
│   │   │   ├── gindividual.py
│   │   │   ├── gpopulation.py
│   │   │   ├── individual.py
│   │   │   ├── __init__.py
│   │   │   ├── networkwrapper.py
│   │   │   ├── population.py
│   │   │   └── variate.py
│   │   ├── __init__.py
│   │   ├── knn
│   │   │   ├── __init__.py
│   │   │   └── lsh
│   │   │   ├── __init__.py
│   │   │   ├── minhash.py
│   │   │   └── nearoptimal.py
│   │   └── trainers
│   │   ├── backprop.py
│   │   ├── evolino.py
│   │   ├── __init__.py
│   │   ├── mixturedensity.py
│   │   ├── rprop.py
│   │   ├── svmtrainer.py
│   │   └── trainer.py
│   ├── tests
│   │   ├── auxiliary.py
│   │   ├── helpers.py
│   │   ├── __init__.py
│   │   ├── optimizationtest.py
│   │   ├── runtests.py
│   │   ├── temp
│   │   ├── testsuites.py
│   │   └── unittests
│   │   ├── auxiliary
│   │   │   ├── __init__.py
│   │   │   └── test_pca.py
│   │   ├── datasets
│   │   │   ├── __init__.py
│   │   │   └── test_datasets_datasets.py
│   │   ├── __init__.py
│   │   ├── optimization
│   │   │   ├── __init__.py
│   │   │   └── populationbased
│   │   │   ├── __init__.py
│   │   │   └── test_pso_ring.py
│   │   ├── rl
│   │   │   ├── environments
│   │   │   │   ├── __init__.py
│   │   │   │   └── twoplayergames
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_capture_game.py
│   │   │   │   └── test_pente.py
│   │   │   └── __init__.py
│   │   ├── structure
│   │   │   ├── connections
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_shared_connections.py
│   │   │   │   ├── test_sliced_connections.py
│   │   │   │   └── test_subsampling_connection.py
│   │   │   ├── __init__.py
│   │   │   ├── modules
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_peephole_lstm.py
│   │   │   │   ├── test_peephole_mdlstm.py
│   │   │   │   ├── test_samplelayer.py
│   │   │   │   ├── test_simple_lstm_network.py
│   │   │   │   └── test_simple_mdlstm.py
│   │   │   └── networks
│   │   │   ├── custom
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_capturegame_network.py
│   │   │   │   └── test_convolutional_nets.py
│   │   │   ├── __init__.py
│   │   │   ├── test_bidirectional_network.py
│   │   │   ├── test_borderswipingnetwork.py
│   │   │   ├── test_cyclic_network.py
│   │   │   ├── _test_mdrnn.py
│   │   │   ├── test_nested_ffn_and_rnn.py
│   │   │   ├── test_nested_network.py
│   │   │   ├── test_network_decomposition.py
│   │   │   ├── test_network_forward_backward.py
│   │   │   ├── test_network_sort.py
│   │   │   ├── test_no_gravity_network.py
│   │   │   ├── _test_rbm.py
│   │   │   ├── test_recurrent_network.py
│   │   │   └── test_swiping_network.py
│   │   ├── supervised
│   │   │   ├── __init__.py
│   │   │   ├── knn
│   │   │   │   ├── __init__.py
│   │   │   │   └── lsh
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_minhash.py
│   │   │   │   └── test_nearoptimal.py
│   │   │   └── trainers
│   │   │   ├── __init__.py
│   │   │   ├── test_backprop.py
│   │   │   ├── test_evolino.py
│   │   │   └── test_rprop.py
│   │   ├── _test_equivalence_to_ctypes.py
│   │   ├── test_utilities_dictionaries.py
│   │   ├── test_utilities_flood.py
│   │   ├── test_utilities_foundafter.py
│   │   ├── test_utilities.py
│   │   ├── test_utilities_reachable.py
│   │   ├── tools
│   │   │   ├── __init__.py
│   │   │   ├── test_ibp_leftordered.py
│   │   │   └── test_rlgluebridge.py
│   │   └── unsupervised
│   │   └── __init__.py
│   ├── tools
│   │   ├── aptativeresampling.py
│   │   ├── benchmark.py
│   │   ├── customxml
│   │   │   ├── handling.py
│   │   │   ├── __init__.py
│   │   │   ├── networkreader.py
│   │   │   └── networkwriter.py
│   │   ├── datasets
│   │   │   ├── __init__.py
│   │   │   └── mnist.py
│   │   ├── datasettools.py
│   │   ├── example_tools.py
│   │   ├── filehandling.py
│   │   ├── fisher.py
│   │   ├── functions.py
│   │   ├── gridsearch.py
│   │   ├── ibp.py
│   │   ├── __init__.py
│   │   ├── kwargsprocessor.py
│   │   ├── mixtures
│   │   │   ├── __init__.py
│   │   │   ├── mixtureofgaussian.py
│   │   │   └── mogpuremax.py
│   │   ├── networking
│   │   │   ├── __init__.py
│   │   │   └── udpconnection.py
│   │   ├── neuralnets.py
│   │   ├── nondominated.py
│   │   ├── plotting
│   │   │   ├── ciaoplot.py
│   │   │   ├── classification.py
│   │   │   ├── colormaps.py
│   │   │   ├── fitnesslandscapes.py
│   │   │   ├── fitnessprogression.py
│   │   │   ├── __init__.py
│   │   │   ├── multiline.py
│   │   │   └── quickvariations.py
│   │   ├── rankingfunctions.py
│   │   ├── rlgluebridge.py
│   │   ├── shortcuts.py
│   │   ├── svmdata.py
│   │   └── validation.py
│   ├── unsupervised
│   │   ├── __init__.py
│   │   └── trainers
│   │   ├── deepbelief.py
│   │   ├── __init__.py
│   │   └── rbm.py
│   └── utilities.py
├── PyBrain.egg-info
│   ├── dependency_links.txt
│   ├── PKG-INFO
│   ├── requires.txt
│   ├── SOURCES.txt
│   └── top_level.txt
├── README.TXT
└── setup.py

291 directories, 1344 files

标签:

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警