提交 f096a2fc 编写于 作者: W weixing02

Move all images to doc/v2/images/

doc/v2/images/FullyConnected.jpg

49.7 KB

doc/v2/images/add_security_group.png

116.2 KB

doc/v2/images/bi_lstm.jpg

34.8 KB

doc/v2/images/checkpointing.png

179.1 KB

doc/v2/images/create_efs.png

236.1 KB

doc/v2/images/csr.png

361.4 KB

doc/v2/images/data_dispatch.png

33.1 KB

文件已添加
doc/v2/images/dataset.png

10.6 KB

doc/v2/images/doc_en.png

159.0 KB

doc/v2/images/efs_mount.png

225.2 KB

doc/v2/images/encoder-decoder-attention-model.png

66.5 KB

doc/v2/images/engine.png

13.3 KB

文件已添加
doc/v2/images/file_storage.png

42.4 KB

digraph G{
subgraph cluster_timestep0 {
label="recurrent timestep i-1"
bgcolor=lightgray
node [style=filled,color=white]
fc0_0 [label="fc 0"]
fc0_1 [label="fc 1"]
fc0_2 [label="fc 2"]
fc0_0 -> fc0_1
fc0_1 -> fc0_2
}
subgraph cluster_timestep1 {
label="recurrent timestep i"
node [style=filled];
fc1_0 [label="fc 0"]
fc1_1 [label="fc 1"]
fc1_2 [label="fc 2"]
color=blue
fc1_0 -> fc1_1
fc1_1 -> fc1_2
}
subgraph cluster_timestep2 {
label="recurrent timestep i+1"
bgcolor=lightgray
node [style=filled,color=white]
fc2_0 [label="fc 0"]
fc2_1 [label="fc 1"]
fc2_2 [label="fc 2"]
fc2_0 -> fc2_1
fc2_1 -> fc2_2
}
fc0_1 -> fc1_1 [style="dotted" constraint=false]
fc1_1 -> fc2_1 [style="dotted" constraint=false]
}
\ No newline at end of file
digraph G{
subgraph cluster_timestep0 {
label="recurrent timestep i-1"
bgcolor=lightgray
node [style=filled,color=white]
fc0_0 [label="fc 0"]
fc0_1 [label="fc 1"]
fc0_2 [label="fc 2"]
m0 [label="memory"]
fc0_0 -> fc0_1
fc0_1 -> fc0_2
fc0_1 -> m0
m0 -> fc0_1
}
subgraph cluster_timestep1 {
label="recurrent timestep i"
node [style=filled];
fc1_0 [label="fc 0"]
fc1_1 [label="fc 1"]
fc1_2 [label="fc 2"]
m1 [label="memory"]
color=blue
fc1_0 -> fc1_1
fc1_1 -> fc1_2
fc1_1 -> m1
m1 -> fc1_1
}
subgraph cluster_timestep2 {
label="recurrent timestep i+1"
bgcolor=lightgray
node [style=filled,color=white]
fc2_0 [label="fc 0"]
fc2_1 [label="fc 1"]
fc2_2 [label="fc 2"]
m2 [label="memory"]
fc2_0 -> fc2_1
fc2_1 -> fc2_2
fc2_1 -> m2
m2 -> fc2_1
}
m0 -> m1 [style="dotted" constraint=false]
m1 -> m2 [style="dotted" constraint=false]
}
\ No newline at end of file
doc/v2/images/gradients.png

22.4 KB

文件已添加
doc/v2/images/init_lock.png

26.1 KB

doc/v2/images/k8s-paddle-arch.png

420.9 KB

doc/v2/images/layers.png

11.4 KB

doc/v2/images/managed_policy.png

241.5 KB

doc/v2/images/matrix.png

18.0 KB

doc/v2/images/nvvp1.png

416.1 KB

doc/v2/images/nvvp2.png

483.5 KB

doc/v2/images/nvvp3.png

247.8 KB

doc/v2/images/nvvp4.png

276.6 KB

doc/v2/images/overview.png

10.5 KB

doc/v2/images/paddle-cloud-in-data-center.png

76.7 KB

文件已添加
doc/v2/images/paddle-etcd.png

49.2 KB

文件已添加
doc/v2/images/paddle-model-sharding.png

37.5 KB

doc/v2/images/paddle-ps-0.png

20.9 KB

doc/v2/images/paddle-ps-1.png

27.7 KB

文件已添加
文件已添加
doc/v2/images/paddle-task-queues.png

33.9 KB

文件已添加
doc/v2/images/paddle-task-states.png

17.8 KB

doc/v2/images/ps_cn.png

33.1 KB

doc/v2/images/ps_en.png

141.7 KB

doc/v2/images/pserver_and_trainer.png

70.0 KB

文件已添加
doc/v2/images/pserver_init.png

27.9 KB

doc/v2/images/route53_create_recordset.png

34.9 KB

doc/v2/images/route53_create_zone.png

50.8 KB

doc/v2/images/sequence_data.png

470.2 KB

digraph G {
rankdir=LR;
subgraph cluster_t0 {
a [label="4"]
b [label="5"]
c [label="2"]
}
subgraph cluster_t1 {
d [label="0"]
e [label="9"]
}
subgraph cluster_t2 {
f [label="8"]
g [label="1"]
h [label="4"]
}
a -> b;
b -> c;
c -> d [constraint=false];
d -> e;
e -> f [constraint=false];
f -> g;
g -> h;
}
\ No newline at end of file
digraph G {
rankdir=LR;
a [label="4"]
b [label="5"]
c [label="2"]
d [label="0"]
e [label="9"]
f [label="8"]
g [label="1"]
h [label="4"]
a -> b;
b -> c;
c -> d;
d -> e;
e -> f;
f -> g;
g -> h;
}
\ No newline at end of file
文件已添加
doc/v2/images/submit-job.png

51.5 KB

文件已添加
doc/v2/images/trainer.png

141.7 KB

doc/v2/images/trainer_cn.png

33.1 KB

doc/v2/images/worker_security_group.png

87.1 KB

doc/v2/images/workflow_of_CAPI.png

447.8 KB

Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
反馈
建议
客服 返回
顶部