• 大小: 42KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: Python
  • 标签:

资源简介

PyTorch 实现的NEAT (NeuroEvolution of Augmenting Topologies)神经进化算法

资源截图

代码片段和文件信息

# Copyright (c) 2018 Uber Technologies Inc.
#
# Licensed under the Apache License Version 2.0 (the “License“);
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
#     Unless required by applicable law or agreed to in writing software
#     distributed under the License is distributed on an “AS IS“ BASIS
#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
#     See the License for the specific language governing permissions and
#     limitations under the License.

import multiprocessing
import os

import click
import neat

# import torch
import numpy as np

from pytorch_neat import t_maze
from pytorch_neat.activations import tanh_activation
from pyt

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-21 17:12  PyTorch-NEAT-master\
     文件       11358  2018-09-21 17:12  PyTorch-NEAT-master\LICENSE
     文件        3176  2018-09-21 17:12  PyTorch-NEAT-master\README.md
     目录           0  2018-09-21 17:12  PyTorch-NEAT-master\examples\
     目录           0  2018-09-21 17:12  PyTorch-NEAT-master\examples\adaptive\
     文件        4078  2018-09-21 17:12  PyTorch-NEAT-master\examples\adaptive\main.py
     文件        1817  2018-09-21 17:12  PyTorch-NEAT-master\examples\adaptive\neat.cfg
     目录           0  2018-09-21 17:12  PyTorch-NEAT-master\examples\simple\
     文件        2181  2018-09-21 17:12  PyTorch-NEAT-master\examples\simple\main.py
     文件        1718  2018-09-21 17:12  PyTorch-NEAT-master\examples\simple\neat.cfg
     目录           0  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\
     文件           0  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\__init__.py
     文件        1265  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\activations.py
     文件        5165  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\adaptive_linear_net.py
     文件        6498  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\adaptive_net.py
     文件         871  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\aggregations.py
     文件        8455  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\cppn.py
     文件        1225  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\dask_helpers.py
     文件        5160  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\maze.py
     文件        2166  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\multi_env_eval.py
     文件        2990  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\neat_reporter.py
     文件        8709  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\recurrent_net.py
     文件        6337  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\strict_t_maze.py
     文件        4266  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\t_maze.py
     文件        5587  2018-09-21 17:12  PyTorch-NEAT-master\pytorch_neat\turning_t_maze.py
     文件          68  2018-09-21 17:12  PyTorch-NEAT-master\requirements.txt
     目录           0  2018-09-21 17:12  PyTorch-NEAT-master\tests\
     文件           0  2018-09-21 17:12  PyTorch-NEAT-master\tests\__init__.py
     文件        1755  2018-09-21 17:12  PyTorch-NEAT-master\tests\test-config.cfg
     文件        1606  2018-09-21 17:12  PyTorch-NEAT-master\tests\test-genome.pkl
     文件        6620  2018-09-21 17:12  PyTorch-NEAT-master\tests\test_adaptive_linear.py
............此处省略7个文件信息

评论

共有 条评论