Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
bb9b1533
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 2 年 前同步成功
通知
118
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
bb9b1533
编写于
4月 13, 2020
作者:
D
dyning
提交者:
GitHub
4月 13, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #16 from littletomatodonkey/add_aug
add image-aug doc
上级
a479afa5
dcb157e6
变更
12
展开全部
显示空白变更内容
内联
并排
Showing
12 changed file
with
494 addition
and
2 deletion
+494
-2
docs/images/image_aug/hide-and-seek-visual.png
docs/images/image_aug/hide-and-seek-visual.png
+0
-0
docs/images/image_aug/test_cutmix.png
docs/images/image_aug/test_cutmix.png
+0
-0
docs/images/image_aug/test_mixup.png
docs/images/image_aug/test_mixup.png
+0
-0
docs/zh_cn/advanced_tutorials/image_augmentation/ImageAugment.md
..._cn/advanced_tutorials/image_augmentation/ImageAugment.md
+468
-0
docs/zh_cn/advanced_tutorials/image_augmentation/index.rst
docs/zh_cn/advanced_tutorials/image_augmentation/index.rst
+7
-0
docs/zh_cn/advanced_tutorials/index.rst
docs/zh_cn/advanced_tutorials/index.rst
+9
-0
ppcls/data/imaug/autoaugment.py
ppcls/data/imaug/autoaugment.py
+1
-1
ppcls/data/imaug/cutout.py
ppcls/data/imaug/cutout.py
+2
-0
ppcls/data/imaug/grid.py
ppcls/data/imaug/grid.py
+2
-0
ppcls/data/imaug/hide_and_seek.py
ppcls/data/imaug/hide_and_seek.py
+2
-0
ppcls/data/imaug/randaugment.py
ppcls/data/imaug/randaugment.py
+1
-1
ppcls/data/imaug/random_erasing.py
ppcls/data/imaug/random_erasing.py
+2
-0
未找到文件。
docs/images/image_aug/hide-and-seek-visual.png
0 → 100644
浏览文件 @
bb9b1533
336.4 KB
docs/images/image_aug/test_cutmix.png
0 → 100644
浏览文件 @
bb9b1533
972.8 KB
docs/images/image_aug/test_mixup.png
0 → 100644
浏览文件 @
bb9b1533
957.9 KB
docs/zh_cn/advanced_tutorials/image_augmentation/ImageAugment.md
0 → 100644
浏览文件 @
bb9b1533
此差异已折叠。
点击以展开。
docs/zh_cn/advanced_tutorials/image_augmentation/index.rst
0 → 100644
浏览文件 @
bb9b1533
图像增广
================================
.. toctree::
:maxdepth: 3
ImageAugment.md
docs/zh_cn/advanced_tutorials/index.rst
0 → 100644
浏览文件 @
bb9b1533
高阶使用
================================
.. toctree::
:maxdepth: 1
image_augmentation/index
distillation/index
ppcls/data/imaug/autoaugment.py
浏览文件 @
bb9b1533
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
#This code is based on https://github.com/DeepVoltaire/AutoAugment/blob/master/autoaugment.py
#
This code is based on https://github.com/DeepVoltaire/AutoAugment/blob/master/autoaugment.py
from
PIL
import
Image
,
ImageEnhance
,
ImageOps
from
PIL
import
Image
,
ImageEnhance
,
ImageOps
import
numpy
as
np
import
numpy
as
np
...
...
ppcls/data/imaug/cutout.py
浏览文件 @
bb9b1533
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# This code is based on https://github.com/uoguelph-mlrg/Cutout
import
numpy
as
np
import
numpy
as
np
import
random
import
random
...
...
ppcls/data/imaug/grid.py
浏览文件 @
bb9b1533
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# This code is based on https://github.com/akuxcw/GridMask
import
numpy
as
np
import
numpy
as
np
from
PIL
import
Image
from
PIL
import
Image
import
pdb
import
pdb
...
...
ppcls/data/imaug/hide_and_seek.py
浏览文件 @
bb9b1533
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
# This code is based on https://github.com/kkanshul/Hide-and-Seek
import
numpy
as
np
import
numpy
as
np
import
random
import
random
...
...
ppcls/data/imaug/randaugment.py
浏览文件 @
bb9b1533
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
#This code is based on https://github.com/
#This code is based on https://github.com/
heartInsert/randaugment
from
PIL
import
Image
,
ImageEnhance
,
ImageOps
from
PIL
import
Image
,
ImageEnhance
,
ImageOps
import
numpy
as
np
import
numpy
as
np
...
...
ppcls/data/imaug/random_erasing.py
浏览文件 @
bb9b1533
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
#This code is based on https://github.com/zhunzhong07/Random-Erasing
import
math
import
math
import
random
import
random
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录