摘要:
ViT 实现了将 Transformer 应用到 CV 领域。 模型定义 import torch as th import torch.nn as nn class SimpleViT(nn.Module): def __init__( self, image_size=28, image_dim 阅读全文
摘要:
tcc(Tiny C Compiler)是一个轻量级的 C 编译器。可以将 C 语言以脚本的形式运行。 安装 tcc: sudo apt install tcc 编写代码: vim main.c #!/usr/bin/tcc -run #include <stdio.h> int main() { 阅读全文