Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
de957570
提交
de957570
authored
5月 13, 2016
作者:
slefrancois
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Corrected contradictions in sparse doc
上级
13b76018
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
3 行增加
和
3 行删除
+3
-3
sparse.txt
doc/sandbox/sparse.txt
+2
-2
sparse.txt
doc/tutorial/sparse.txt
+1
-1
没有找到文件。
doc/sandbox/sparse.txt
浏览文件 @
de957570
...
@@ -19,9 +19,9 @@ Note that you want SciPy >= 0.7.2
...
@@ -19,9 +19,9 @@ Note that you want SciPy >= 0.7.2
We describe the details of the compressed sparse matrix types.
We describe the details of the compressed sparse matrix types.
``scipy.sparse.csc_matrix``
``scipy.sparse.csc_matrix``
should be used if the
columns are sparse
.
should be used if the
re are more rows than column (shape[0] > shape[1])
.
``scipy.sparse.csr_matrix``
``scipy.sparse.csr_matrix``
should be used if the
rows are sparse
.
should be used if the
re are more columns than rows (shape[0] < shape[1])
.
``scipy.sparse.lil_matrix``
``scipy.sparse.lil_matrix``
is faster if we are modifying the array. After initial inserts,
is faster if we are modifying the array. After initial inserts,
we can then convert to the appropriate sparse matrix format.
we can then convert to the appropriate sparse matrix format.
...
...
doc/tutorial/sparse.txt
浏览文件 @
de957570
...
@@ -80,7 +80,7 @@ the rows and with a matrix that have a lower number of rows, ``csr`` format is a
...
@@ -80,7 +80,7 @@ the rows and with a matrix that have a lower number of rows, ``csr`` format is a
.. note::
.. note::
If shape[0] > shape[1], use ``cs
r`` format. Otherwise, use ``csc
``.
If shape[0] > shape[1], use ``cs
c`` format. Otherwise, use ``csr
``.
Sometimes, since the sparse module is young, ops does not exist for both format. So here is
Sometimes, since the sparse module is young, ops does not exist for both format. So here is
what may be the most relevent rule:
what may be the most relevent rule:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论