zoukankan      html  css  js  c++  java
  • Keras 源码分析

    .
    │  activations.py
    │  callbacks.py
    │  constraints.py
    │  initializations.py
    │  metrics.py
    │  models.py
    │  objectives.py
    │  optimizers.py
    │  regularizers.py
    │  __init__.py
    │  
    ├─applications
    |      # 一些典型的应用
    │      ...
    │      
    ├─backend
    |      # Theano, Tensorflow 后端
    |      # tensorflow_backend.py 和 theano_backend.py 有一些同名的函数
    |      # 这样 import backend as K 以后应用时,就不需要考虑 Tensorflow 和 Theano 的具体差别了
    │      common.py
    │      tensorflow_backend.py
    │      theano_backend.py
    │      __init__.py
    │      
    ├─datasets
    |      # 下载数据集的脚本
    │      ...
    |
    ├─engine
    │      topology.py # Keras Layer, Input, Merge, Container的基础
    │      training.py
    │      __init__.py
    │      
    ├─layers
    |      # 相当于 engine 的应用
    |      # 通过继承 engine/topology.py 的 Layer 来实现不同的层
    │      convolutional.py
    │      __init__.py
    │      ...
    │      
    ├─preprocessing
    │      image.py
    │      sequence.py
    │      text.py
    │      __init__.py
    │      
    ├─utils
    │      data_utils.py
    │      generic_utils.py
    │      io_utils.py
    │      layer_utils.py
    │      np_utils.py
    │      test_utils.py
    │      visualize_util.py
    │      __init__.py
    │      
    └─wrappers
            scikit_learn.py
            __init__.py
  • 相关阅读:
    Spring源码解读 推荐流程
    Spring源码解读 推荐流程
    验证数据归属
    验证数据归属
    maven用途、核心概念、用法、常用参数和命令、扩展
    Reverse Linked List II
    Insertion Sort List
    Palindrome Partitioning
    Construct Binary Tree from Preorder and Inorder Traversal
    Valid Parentheses
  • 原文地址:https://www.cnblogs.com/nxf-rabbit75/p/10141682.html
Copyright © 2011-2022 走看看