Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
smartvxworks
Python_669866
提交
544cf623
P
Python_669866
项目概览
smartvxworks
/
Python_669866
与 Fork 源项目一致
Fork自
inscode / Python
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Python_669866
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
544cf623
编写于
2月 13, 2025
作者:
S
smartvxworks
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Auto Commit
上级
0a575cc3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
38 addition
and
2 deletion
+38
-2
.inscode
.inscode
+1
-1
main.py
main.py
+37
-1
未找到文件。
.inscode
浏览文件 @
544cf623
run = "p
ip install -r requirements.txt;p
ython main.py"
run = "python main.py"
language = "python"
[packager]
...
...
main.py
浏览文件 @
544cf623
print
(
'欢迎来到 InsCode'
)
\ No newline at end of file
import
matplotlib.pyplot
as
plt
import
numpy
as
np
# 设置图片清晰度
plt
.
rcParams
[
'figure.dpi'
]
=
300
# 绘制简单神经网络
# 定义每层神经元的位置
input_layer
=
np
.
array
([(
0
,
i
)
for
i
in
range
(
3
)])
hidden_layer
=
np
.
array
([(
1
,
i
)
for
i
in
range
(
4
)])
output_layer
=
np
.
array
([(
2
,
i
)
for
i
in
range
(
1
)])
# 绘制神经元
plt
.
scatter
(
input_layer
[:,
0
],
input_layer
[:,
1
],
s
=
200
,
label
=
'输入层'
)
plt
.
scatter
(
hidden_layer
[:,
0
],
hidden_layer
[:,
1
],
s
=
200
,
label
=
'隐藏层'
)
plt
.
scatter
(
output_layer
[:,
0
],
output_layer
[:,
1
],
s
=
200
,
label
=
'输出层'
)
# 绘制连接
for
i
in
input_layer
:
for
h
in
hidden_layer
:
plt
.
plot
([
i
[
0
],
h
[
0
]],
[
i
[
1
],
h
[
1
]],
'k-'
)
for
h
in
hidden_layer
:
for
o
in
output_layer
:
plt
.
plot
([
h
[
0
],
o
[
0
]],
[
h
[
1
],
o
[
1
]],
'k-'
)
# 添加权重标注(简单示意)
for
i
in
input_layer
:
for
h
in
hidden_layer
:
mid_x
=
(
i
[
0
]
+
h
[
0
])
/
2
mid_y
=
(
i
[
1
]
+
h
[
1
])
/
2
plt
.
text
(
mid_x
,
mid_y
,
'w'
,
ha
=
'center'
,
va
=
'center'
)
# 添加标签和标题
plt
.
legend
()
plt
.
title
(
'简单神经网络示例'
)
plt
.
axis
(
'off'
)
plt
.
show
()
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录