Git Product home page Git Product logo

keras-docs-zh's Introduction

Chinese (zh-cn) translation of the Keras docs

有关最新文档,请访问 Read the Docs 备份版本:keras-zh,每月更新。

有关官方原始文档,请访问 Keras官方中文文档

Translation has done! 文档已完成,欢迎进一步修订。

翻译过程中,请直接将 sources/.md 文件中的英文替换为中文。

排版规范 Typesetting

此文档遵循 中文排版指南 规范,并在此之上遵守以下约定:

  • 英文的左右保持一个空白,避免中英文字黏在一起;
  • 使用全角标点符号;
  • 严格遵循 Markdown 语法;
  • 原文中的双引号(" ")请代换成中文的引号(「」符号怎么打出来见 这里);
  • 加亮」和「加粗」和「链接」都需要在左右保持一个空格。

翻译对照列表 Conventions

  • 该翻译用于 zh-cn (简体中文,**大陆地区)。
  • 当遇到以下 专业术语 的时候,请使用以下列表进行对照翻译。(未完待续)
English 中文
arguments         参数               
boolean           布尔               
data augumentation 数据增强           
deep learning     深度学习           
float             浮点数              
Functional API     函数式 API    
Fuzz factor       模糊因子            
input shape       输入尺寸            
index             索引                
int               整数                
layer             层                 
loss function     损失函数            
metrics 评估标准
nD tensor         nD 张量            
Numpy Array Numpy 矩阵
objective 目标
optimizer 优化器
output shape 输出尺寸
regularizer       正则化器            
return 返回
recurrent 循环
Sequential Model 顺序模型
shape 尺寸
target 目标
testing 测试
training 训练
wrapper           封装器               

Welcome to contribute!!!

keras-docs-zh's People

Contributors

accraze avatar bigballon avatar davexpro avatar desti-nation avatar dream-catcher avatar fchollet avatar freed-wu avatar gaussic avatar jetrunner avatar jiashenc avatar jiemojiemo avatar joytsay avatar karlind avatar king-haw avatar linnjie avatar lookfun avatar maxpoon avatar raywu0123 avatar sighsmile avatar tigerneil avatar tuoup avatar whllhw avatar windwood-xmu avatar wotchin avatar ypwhs avatar zh-plus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

keras-docs-zh's Issues

Order of stored weights.

Hi, I wanna to extract the weights from VGG model in the keras library for further other usage. And I read the weights from the following script

from keras.applications.vgg16 import VGG16
model = VGG16()
weights = []
for layer in model.layers:
    weights.append(layer.get_weights())  # list of numpy array

And the shape of weights in CONV1 is tuple(3,3,3,64). Could you help me check the order of this tuple? Is it (width of filter, height of filter, channel of filter, number of kernel) or ( height of filter, width of filter, channel of filter, number of kernel)?

Thanks

文档目录失效

image
没人管了吗?左侧目录失效,点不了,看起来好难受啊

CSS 错误

在英文文档中,侧边栏有一个 wy-side-scroll ,覆盖了父元素的 overflow-y: hidden; 属性为 scroll,而中文文档没有这个 nav,导致侧边栏无法滚动

lstm中,定义input=Input((None,embedding))时,和定义input=Input((seq_len,embedding))区别

输入:x_train=np.random.random((32,30,300)) y_train=np.random.randint(2,size=(32,30,1))
模型A:inputs=Input(shape=(None,300)) lstm=LSTM(40,return_sequences=True)(inputs) outer=TimeDistributed(Dense(1,activation='sigmoid'))(lstm)
模型B:‘inputs=Input(shape=(30,300))
lstm=LSTM(40,return_sequences=True)(inputs)
outer=TimeDistributed(Dense(1,activation='sigmoid'))(lstm)’
二者都不会报错,请问准确率各方面有什么区别吗?

We need to follow the English document, would you like to contribute?

We need to follow the English document recently, would you like to contribute?

Currently, these files need to be updates:

English Chinese GitHub Description Currently Translating
Keras FAQ: Frequently Asked Keras Questions Keras FAQ: 常见问题解答 faq.md Some links need to be fixed, and some paragraphs need to be added. jiemojiemo
Core Layers 核心网络层 core.md Flatten, Input, SpatialDropout1D, SpatialDropout2D, SpatialDropout3D jiemojiemo
Convolutional Layers 卷积层 convolutional.md SeparableConv1D King-HAW
Pooling Layers 池化层 pooling.md GlobalMaxPooling3D, GlobalAveragePooling3D King-HAW
Recurrent Layers 循环层 recurrent.md GRU, StackedRNNCells King-HAW
Advanced Activations Layers 高级激活层 advanced-activations.md ReLU desti-nation
Optimizers 优化器 optimizers.md Adagrad, Adadelta King-HAW
Activations 激活函数 activations.md Total page jiemojiemo
Callbacks 回调函数 callbacks.md TerminateOnNaN, BaseLogger, ProgbarLogger, RemoteMonitor, TensorBoard
Applications 应用 applications.md Add MobileNetV2, and adjust the whole page.
Backend 后端 backend.md is_tensor, slice
Regularizers 正正则化 regularizers.md Adjust the whole page. sighsmile
Constraints 约束项 constraints.md Adjust the whole page. sighsmile
Utils 工具 utils.md multi_gpu_model desti-nation

Contributions are welcome.

If you wanna contribute, please reply to this issue directly, we will mark you in this table. Thanks.

The version released by github.io is inconsistent with the version compiled by the current project, and the page jump style is different.

The version released by github.io is inconsistent with the version compiled by the current project, and the page jump style is different.

The home version of the deploy version is different from other theme styles. For example, click on the quick start, the directory bar can not view all the directories, but I compiled the version in the repository without this problem.

please deploy the latest version to github.io!

How to contribute?

I'm Chinese and would like to contribute to the keras docs-zh translation.
Is there any ways that we can help and share the task? Thanks.

A link error on the homepage

Feedback: The link to an edit button in the upper right corner of the website is wrong, please update. Maybe you can link it to this project.

image

Docs » Layers » 卷积层 Convolutional

The introduction of Convolutional Layers Conv1D:

参数:
padding: "valid", "causal" 或 "same" 之一 (大小写敏感) "valid" 表示「不填充」。 "same" 表示填充输入以使输出具有与原始输入相同的长度。 "causal" 表示因果(膨胀)卷积, 例如,output[t] 不依赖于 input[t+1:], 在模型不应违反时间顺序的时间数据建模时非常有用。 在模型不应违反时间顺序的时间数据建模时非常有用。 详见 WaveNet: A Generative Model for Raw Audio, section 2.1。

The sentence of “在模型不应违反时间顺序的时间数据建模时非常有用。” is repeated.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.