Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
AutoDL
提交
f0e66c48
A
AutoDL
项目概览
PaddlePaddle
/
AutoDL
通知
3
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
AutoDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f0e66c48
编写于
4月 18, 2019
作者:
Q
qinduohao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix encoding typo
上级
f02208f6
变更
17
显示空白变更内容
内联
并排
Showing
17 changed file
with
17 addition
and
17 deletion
+17
-17
AutoDL Design/autodl.py
AutoDL Design/autodl.py
+1
-1
AutoDL Design/autodl_agent.py
AutoDL Design/autodl_agent.py
+1
-1
AutoDL Design/cifar/dataset_maker.py
AutoDL Design/cifar/dataset_maker.py
+1
-1
AutoDL Design/distribute_generator.py
AutoDL Design/distribute_generator.py
+1
-1
AutoDL Design/inception_train/models/inception.py
AutoDL Design/inception_train/models/inception.py
+1
-1
AutoDL Design/inception_train/models/layers.py
AutoDL Design/inception_train/models/layers.py
+1
-1
AutoDL Design/inception_train/models/ops.py
AutoDL Design/inception_train/models/ops.py
+1
-1
AutoDL Design/inception_train/nn.py
AutoDL Design/inception_train/nn.py
+1
-1
AutoDL Design/inception_train/preprocess.py
AutoDL Design/inception_train/preprocess.py
+1
-1
AutoDL Design/inception_train/reader.py
AutoDL Design/inception_train/reader.py
+1
-1
AutoDL Design/inception_train/train.py
AutoDL Design/inception_train/train.py
+1
-1
AutoDL Design/inception_train/utils.py
AutoDL Design/inception_train/utils.py
+1
-1
AutoDL Design/main.py
AutoDL Design/main.py
+1
-1
AutoDL Design/policy_model.py
AutoDL Design/policy_model.py
+1
-1
AutoDL Design/reinforce_policy_gradient.py
AutoDL Design/reinforce_policy_gradient.py
+1
-1
AutoDL Design/simple_main.py
AutoDL Design/simple_main.py
+1
-1
AutoDL Design/utils.py
AutoDL Design/utils.py
+1
-1
未找到文件。
AutoDL Design/autodl.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/autodl_agent.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/cifar/dataset_maker.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/distribute_generator.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/models/inception.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/models/layers.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/models/ops.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/nn.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/preprocess.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/reader.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rig hts Reserved
# Copyright (c) 2019 PaddlePaddle Authors. All Rig hts Reserved
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/train.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/inception_train/utils.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/main.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/policy_model.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/reinforce_policy_gradient.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/simple_main.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
AutoDL Design/utils.py
浏览文件 @
f0e66c48
#!/usr/bin/env python
#!/usr/bin/env python
# -*-
en
coding:utf-8 -*-
# -*- coding:utf-8 -*-
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录