Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
1050bcbe
提交
1050bcbe
authored
6月 17, 2015
作者:
Iban Harlouchet
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
flake8 for fourier.py
上级
87850539
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
15 行增加
和
13 行删除
+15
-13
fourier.py
theano/sandbox/fourier.py
+15
-12
test_flake8.py
theano/tests/test_flake8.py
+0
-1
没有找到文件。
theano/sandbox/fourier.py
浏览文件 @
1050bcbe
"""Provides Ops for FFT and DCT.
"""Provides Ops for FFT and DCT.
"""
"""
from
theano.gof
import
Op
,
Apply
,
generic
from
theano
import
tensor
import
numpy.fft
import
numpy
import
numpy
import
numpy.fft
from
six.moves
import
xrange
from
six.moves
import
xrange
from
theano
import
tensor
from
theano.gof
import
Op
,
Apply
,
generic
class
GradTodo
(
Op
):
class
GradTodo
(
Op
):
def
make_node
(
self
,
x
):
def
make_node
(
self
,
x
):
return
Apply
(
self
,
[
x
],
[
x
.
type
()])
return
Apply
(
self
,
[
x
],
[
x
.
type
()])
def
perform
(
self
,
node
,
inputs
,
outputs
):
def
perform
(
self
,
node
,
inputs
,
outputs
):
raise
NotImplementedError
(
'TODO'
)
raise
NotImplementedError
(
'TODO'
)
grad_todo
=
GradTodo
()
grad_todo
=
GradTodo
()
...
@@ -45,8 +46,9 @@ class FFT(Op):
...
@@ -45,8 +46,9 @@ class FFT(Op):
self
.
inverse
=
inverse
self
.
inverse
=
inverse
def
__eq__
(
self
,
other
):
def
__eq__
(
self
,
other
):
return
type
(
self
)
==
type
(
other
)
and
(
self
.
half
==
other
.
half
)
and
(
self
.
inverse
==
return
(
type
(
self
)
==
type
(
other
)
and
other
.
inverse
)
self
.
half
==
other
.
half
and
self
.
inverse
==
other
.
inverse
)
def
__hash__
(
self
):
def
__hash__
(
self
):
return
hash
(
type
(
self
))
^
hash
(
self
.
half
)
^
9828743
^
(
self
.
inverse
)
return
hash
(
type
(
self
))
^
hash
(
self
.
half
)
^
9828743
^
(
self
.
inverse
)
...
@@ -77,21 +79,22 @@ class FFT(Op):
...
@@ -77,21 +79,22 @@ class FFT(Op):
else
:
else
:
fft_fn
=
numpy
.
fft
.
fft
fft_fn
=
numpy
.
fft
.
fft
fft
=
fft_fn
(
frames
,
int
(
n
),
int
(
axis
))
fft
=
fft_fn
(
frames
,
int
(
n
),
int
(
axis
))
if
self
.
half
:
if
self
.
half
:
M
,
N
=
fft
.
shape
M
,
N
=
fft
.
shape
if
axis
==
0
:
if
axis
==
0
:
if
(
M
%
2
):
if
(
M
%
2
):
raise
ValueError
(
'halfFFT on odd-length vectors is undefined'
)
raise
ValueError
(
'halfFFT on odd-length vectors is undefined'
)
spectrogram
[
0
]
=
fft
[
0
:
M
/
2
,
:]
spectrogram
[
0
]
=
fft
[
0
:
M
/
2
,
:]
elif
axis
==
1
:
elif
axis
==
1
:
if
(
N
%
2
):
if
(
N
%
2
):
raise
ValueError
(
'halfFFT on odd-length vectors is undefined'
)
raise
ValueError
(
'halfFFT on odd-length vectors is undefined'
)
spectrogram
[
0
]
=
fft
[:,
0
:
N
/
2
]
spectrogram
[
0
]
=
fft
[:,
0
:
N
/
2
]
else
:
else
:
raise
NotImplementedError
()
raise
NotImplementedError
()
else
:
else
:
spectrogram
[
0
]
=
fft
spectrogram
[
0
]
=
fft
def
grad
(
self
,
inp
,
out
):
def
grad
(
self
,
inp
,
out
):
frames
,
n
,
axis
=
inp
frames
,
n
,
axis
=
inp
g_spectrogram
,
g_buf
=
out
g_spectrogram
,
g_buf
=
out
...
@@ -112,9 +115,9 @@ def dct_matrix(rows, cols, unitary=True):
...
@@ -112,9 +115,9 @@ def dct_matrix(rows, cols, unitary=True):
"""
"""
rval
=
numpy
.
zeros
((
rows
,
cols
))
rval
=
numpy
.
zeros
((
rows
,
cols
))
col_range
=
numpy
.
arange
(
cols
)
col_range
=
numpy
.
arange
(
cols
)
scale
=
numpy
.
sqrt
(
2.0
/
cols
)
scale
=
numpy
.
sqrt
(
2.0
/
cols
)
for
i
in
xrange
(
rows
):
for
i
in
xrange
(
rows
):
rval
[
i
]
=
numpy
.
cos
(
i
*
(
col_range
*
2
+
1
)
/
(
2.0
*
cols
)
*
numpy
.
pi
)
*
scale
rval
[
i
]
=
numpy
.
cos
(
i
*
(
col_range
*
2
+
1
)
/
(
2.0
*
cols
)
*
numpy
.
pi
)
*
scale
if
unitary
:
if
unitary
:
rval
[
0
]
*=
numpy
.
sqrt
(
0.5
)
rval
[
0
]
*=
numpy
.
sqrt
(
0.5
)
...
...
theano/tests/test_flake8.py
浏览文件 @
1050bcbe
...
@@ -137,7 +137,6 @@ whitelist_flake8 = [
...
@@ -137,7 +137,6 @@ whitelist_flake8 = [
"sandbox/rng_mrg.py"
,
"sandbox/rng_mrg.py"
,
"sandbox/theano_object.py"
,
"sandbox/theano_object.py"
,
"sandbox/scan.py"
,
"sandbox/scan.py"
,
"sandbox/fourier.py"
,
"sandbox/test_multinomial.py"
,
"sandbox/test_multinomial.py"
,
"sandbox/minimal.py"
,
"sandbox/minimal.py"
,
"sandbox/test_rng_mrg.py"
,
"sandbox/test_rng_mrg.py"
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论