Ting

Ting

满怀希望就会所向披靡

Vue3+ts开发学习 · 基础准备

黑马的视频学习

VSCode配置一个uni-app + TS项目

  • uni-app插件
    • uni-create-view
    • uni-helper
    • uniapp小程序扩展
  • ts类型校验
    • 声明类文件
    1
    
    pnpm i -D miniprogram-api-typings @uni-helper/uni-app-types
    • 配置tsconfig.json
    1
    2
    3
    4
    5
    
      "types": [
        "@dcloudio/types",
        "miniprogram-api-typings",
        "@uni-helper/uni-app-types"
      ]
    1
    2
    3
    4
    
    "vueCompilerOptions": {
      // experimentalRuntimeMode 已废弃,现调整为 nativeTags,请升级 Volar 插件至最新版本
      "nativeTags": ["block", "component", "template", "slot"]
    },
  • json注释问题

内部配置

  1. mainifest.json中添加微信小程序的appid

一定是小程序相关的appid配置

杂记 · Git与Github对项目进行相关操作

使用Git与Github对项目进行相关操作

上传本地项目

  1. 在本地项目文件夹中初始化一个.git文件
    1
    
    git init
    之后就得到一个.git的隐藏文件
  2. 在远程仓库里面加入我要上传的仓库[相当于连接远程仓库]
    1
    
    git remote add origin https://github.com/你的github名字/仓库名.git
  3. 查看当前本地仓库状态
    1
    
    git status
    被标红色的文件就是修改的文件
  4. 提交本地代码到本地git的缓存区
    1
    2
    
    git add xxx
    git add . //全部提交
  5. 推送代码到本地的git库
    1
    
    git commit -m "注释"
  6. 把本地的代码提交到远程仓库
    1
    2
    3
    4
    
    /* 如果仓库为空 */
    git push -u 远程主机名orign 远程分支名main/master
    /* 如果仓库不为空 */
    git push 远程主机名orign 远程分支名main/master

其它指令

1
git pull // 把远程仓库同步到本地仓库=>谨防覆盖自己的本地
1
git remote -v // 查看远程仓库详细信息,可以看到仓库名称,关联地址
1
git remote remove orign // 删除orign仓库(比如名称错误)
1
git remote add origin 仓库地址// 重新添加远程仓库地址

杂记 · PlotNeuralNet使用

PlotNeuralNet使用

  1. 在PlotNeuralNet源代码中新建my_project把自己的python程序放里面
  2. 写Unet.py脚本,存储在my_project中
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import sys
sys.path.append('../')
from pycore.tikzeng import *
from pycore.blocks  import *

arch = [ 
    # 开头
    to_head('..'), 
    to_cor(),
    to_begin(),
    
    # 添加输入层
    to_input( '../examples/fcn8s/cats.jpg' ),

    #  添加block1包含一个二重卷积接relu
    to_ConvConvRelu( name='ccr_b1', s_filer=500, n_filer=(64,64), offset="(0,0,0)", to="(0,0,0)", width=(2,2), height=40, depth=40  ),
    to_Pool(name="pool_b1", offset="(0,0,0)", to="(ccr_b1-east)", width=1, height=32, depth=32, opacity=0.5),
    #  添加三个block,每个包含三个二卷积加一池化
    *block_2ConvPool( name='b2', botton='pool_b1', top='pool_b2', s_filer=256, n_filer=128, offset="(1,0,0)", size=(32,32,3.5), opacity=0.5 ),
    *block_2ConvPool( name='b3', botton='pool_b2', top='pool_b3', s_filer=128, n_filer=256, offset="(1,0,0)", size=(25,25,4.5), opacity=0.5 ),
    *block_2ConvPool( name='b4', botton='pool_b3', top='pool_b4', s_filer=64,  n_filer=512, offset="(1,0,0)", size=(16,16,5.5), opacity=0.5 ),

    #  瓶颈,为block5
    to_ConvConvRelu( name='ccr_b5', s_filer=32, n_filer=(1024,1024), offset="(2,0,0)", to="(pool_b4-east)", width=(8,8), height=8, depth=8, caption="Bottleneck"  ),
    to_connection( "pool_b4", "ccr_b5"),

    # 解码器
    #  多个block,每个为unconv
    *block_Unconv( name="b6", botton="ccr_b5", top='end_b6', s_filer=64,  n_filer=512, offset="(2.1,0,0)", size=(16,16,5.0), opacity=0.5 ),
    to_skip( of='ccr_b4', to='ccr_res_b6', pos=1.25),
    *block_Unconv( name="b7", botton="end_b6", top='end_b7', s_filer=128, n_filer=256, offset="(2.1,0,0)", size=(25,25,4.5), opacity=0.5 ),
    to_skip( of='ccr_b3', to='ccr_res_b7', pos=1.25),    
    *block_Unconv( name="b8", botton="end_b7", top='end_b8', s_filer=256, n_filer=128, offset="(2.1,0,0)", size=(32,32,3.5), opacity=0.5 ),
    to_skip( of='ccr_b2', to='ccr_res_b8', pos=1.25),    
    
    *block_Unconv( name="b9", botton="end_b8", top='end_b9', s_filer=512, n_filer=64,  offset="(2.1,0,0)", size=(40,40,2.5), opacity=0.5 ),
    to_skip( of='ccr_b1', to='ccr_res_b9', pos=1.25),
    
    to_ConvSoftMax( name="soft1", s_filer=512, offset="(0.75,0,0)", to="(end_b9-east)", width=1, height=40, depth=40, caption="SOFT" ),
    to_connection( "end_b9", "soft1"),
    #  结束
    to_end() 
    ]


def main():
    namefile = str(sys.argv[0]).split('.')[0]
    to_generate(arch, namefile + '.tex' )

if __name__ == '__main__':
    main() 
  1. 执行后生成 Unet.tex,这个是latex代码
  2. 用 git bash 进入my_project文件中,解析Unet得到模型图片的pdf
    1
    
    bash ../tikzmake.sh Unet

Bug记录

../tikzmake.sh: line 13: xdg-open: command not found报错

修改 tikzmake.sh 的代码

0%