Location via proxy:   
[Report a bug]   [Manage cookies]                

Harbor's installation and deployment can be quite complicated, as it requires the official configuration file to generate the docker-compose.yml. Ensure that Docker and Docker Compose are already set up locally. Manually visit https://github.com/goharbor/harbo…

2025年2月22日 0条评论 378点热度 0人点赞 痴者工良 阅读全文

Harbor 的安装部署比较麻烦,需要依赖官方的配置文件生成 docker-compose.yml ,要确保本地已经部署了 docker 和 docker-compose。 手写打开 https://github.com/goharbor/harbor/releases 下载压缩包,解压后打开目录。 生成配置文件: cp harbor.yml.tmpl harbor.yml 然后打开 harbor.yml 修改几个关键点。 因为 harbor 本身是启动一堆 docker 容器,然后会部署一个 nginx 容器暴露…

2025年2月22日 0条评论 1002点热度 0人点赞 痴者工良 阅读全文

Deploying Casdoor There are several types of single sign-on authentication sources (protocols): LDAP, SMTP, OAuth2.0, etc., with OAuth2.0 being the current mainstream standard. There are many platforms in the open-source community that support OAuth, such as K…

2025年2月22日 0条评论 348点热度 0人点赞 痴者工良 阅读全文

部署 Casdoor 单点登录认证源(协议)大概有这么几种: LDAP、SMTP、OAuth2.0 等,目前主流是 OAuth2.0 ,支持 OAuth 的平台在开源社区也有不少,有 Keycloak、Okta、Casdoor 等,还有很多第三方的 OAuth2 Server SDK 或者商业收费平台,在经历过筛选,最后决定使用 Casdoor 作为单点登录认证中心。 官网地址: https://casdoor.org/zh/docs/overview Casdoor 是一个用户界面优先的身份访问管理 (IAM)/…

2025年2月22日 0条评论 1870点热度 0人点赞 痴者工良 阅读全文

Instructions Author: whuanle Document Address: https://mmq.whuanle.cn Repository Address: https://github.com/whuanle/Maomi.MQ Author's Blog: https://www.whuanle.cn https://www.cnblogs.com/whuanle Introduction Maomi.MQ is a communication framework that simplifi…

2025年2月21日 0条评论 330点热度 0人点赞 痴者工良 阅读全文

说明 作者:痴者工良 文档地址:https://mmq.whuanle.cn 仓库地址:https://github.com/whuanle/Maomi.MQ 作者博客: https://www.whuanle.cn https://www.cnblogs.com/whuanle 导读 Maomi.MQ 是一个简化了消息队列使用方式的通讯框架,目前支持了 RabbitMQ。 Maomi.MQ.RabbitMQ 是一个用于专为 RabbitMQ 设计的发布者和消费者通讯模型,大大简化了发布和消息的代码,并提供一系列简…

2025年2月21日 0条评论 1196点热度 0人点赞 痴者工良 阅读全文

Tutorial Title: Getting Started with Deep Learning Using C# Author: whuanle Tutorial URL: https://torch.whuanle.cn E-book Repository: https://github.com/whuanle/cs_pytorch Maomi.Torch Project Repository: https://github.com/whuanle/Maomi.Torch VGG: A Very Deep …

2025年2月17日 0条评论 340点热度 0人点赞 痴者工良 阅读全文

教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址: https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.Torch VGG大规模图像识别的超深度卷积网络 本文主要讲解用于大规模图像识别的超深度卷积网络 VGG,通过 VGG 实现自有数据集进行图像分类训练模型和识别,VGG 有 vgg11、vgg11_bn、vgg13、v…

2025年2月17日 0条评论 958点热度 0人点赞 痴者工良 阅读全文

Kratos Kratos is a lightweight microservice framework written in Go. The official documentation can be found at: https://go-kratos.dev/docs/ Kratos core component diagram: Description of Kratos core components: APIs: Protocol communication is based on HTTP/gRP…

2025年2月14日 0条评论 300点热度 1人点赞 痴者工良 阅读全文

Kratos Kratos 是一个轻量级的微服务框架,使用 Go 语言编写,官方文档地址: https://go-kratos.dev/docs/ Kratos 核心组件图: Kratos 核心组件说明: APIs:协议通信以 HTTP/gRPC 为基础,通过 Protobuf 进行定义; Errors:通过 Protobuf 的 Enum 作为错误码定义,以及工具生成判定接口; Metadata:在协议通信 HTTP/gRPC 中,通过 Middleware 规范化服务元信息传递; Config:支持多数据源方式…

2025年2月14日 0条评论 1836点热度 1人点赞 痴者工良 阅读全文

Training and Generating Avatars via Generative Adversarial Networks (GAN) https://torch.whuanle.cn E-book repository: https://github.com/whuanle/cs_pytorch Maomi.Torch project repository: https://github.com/whuanle/Maomi.Torch Description This article is adapt…

2025年2月10日 0条评论 352点热度 0人点赞 痴者工良 阅读全文

通过生成对抗网络(GAN)训练和生成头像 https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.Torch 说明 本文根据 Pytorch 官方文档的示例移植而来,部分文字内容和图片来自 Pytorch 文档,文章后面不再单独列出引用说明。 官方文档地址: https://pytorch.org/tutorials/beginner/…

2025年2月10日 0条评论 1176点热度 0人点赞 痴者工良 阅读全文

[TOC] Tutorial Title: Getting Started with Deep Learning using C# Author: whuanle Tutorial URL: https://torch.whuanle.cn E-book Repository: https://github.com/whuanle/cs_pytorch Maomi.Torch Project Repository: https://github.com/whuanle/Maomi.Torch Training a …

2025年2月7日 0条评论 296点热度 0人点赞 痴者工良 阅读全文

[TOC] 教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址:https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.Torch 使用 Torch 训练模型 本章主要参考《破解深度学习》的第四章,在本章将会实现一个数字分类器,主要包括数据加载和处理、模型训练和保存、预训练模型加载,但是内容跟 开始使用 Torch 一章差不多…

2025年2月7日 0条评论 1084点热度 0人点赞 痴者工良 阅读全文

Tutorial Name: Getting Started with Deep Learning using C# Author: whuanle Tutorial Address: https://torch.whuanle.cn E-book Repository: https://github.com/whuanle/cs_pytorch Maomi.Torch Project Repository: https://github.com/whuanle/Maomi.Torch Getting Starte…

2025年2月5日 2条评论 354点热度 0人点赞 痴者工良 阅读全文

教程名称:使用 C# 入门深度学习 作者:痴者工良 教程地址:https://torch.whuanle.cn 电子书仓库:https://github.com/whuanle/cs_pytorch Maomi.Torch 项目仓库:https://github.com/whuanle/Maomi.Torch 开始使用 Torch 本章内容主要基于 Pytorch 官方入门教程编写,使用 C# 代码代替 Python,主要内容包括处理数据、创建模型、优化模型参数、保存模型、加载模型,读者通过本章内容开始了解 Tor…

2025年2月5日 2条评论 1608点热度 0人点赞 痴者工良 阅读全文

显卡驱动安装和深度学习环境搭建,可以参考笔者的文章: https://www.whuanle.cn/archives/21624 https://torch.whuanle.cn/01.base/01.env.html Testing Environment AMD EPYC 7V13 64-Core 24 Cores 220GB RAM NVIDIA A100 80GB PCIe Download and Install Ollama Open https://ollama.com/, and simply do…

2025年2月4日 0条评论 322点热度 5人点赞 痴者工良 阅读全文

显卡驱动安装和深度学习环境搭建,可以参考笔者的文章: https://www.whuanle.cn/archives/21624 https://torch.whuanle.cn/01.base/01.env.html 测试环境 AMD EPYC 7V13 64-Core 24核 220GB 内存 NVIDIA A100 80GB PCIe 下载安装 ollama 打开 https://ollama.com/,直接下载安装即可。 配置 ollama 有三个环境变量要配置。 # api 服务监听地址 OLLAMA_H…

2025年2月4日 0条评论 20364点热度 5人点赞 痴者工良 阅读全文

In the multithreading column, knowledge related to C# timers has been written, but the content is not very complete. Recently, I have deepened some understanding, and I will make some notes. https://threads.whuanle.cn/1.thread_basic/3.pool.html#%E8%AE%A1%E6%97…

2025年1月3日 0条评论 320点热度 2人点赞 痴者工良 阅读全文

在多线程专栏中编写了 C# 定时器相关知识,但是内容不是很完善,近期加深了一些认识,顺便做一下笔记。 https://threads.whuanle.cn/1.thread_basic/3.pool.html#%E8%AE%A1%E6%97%B6%E5%99%A8 这里不提桌面里面的定时器,只讨论 .NET 本身的定时器,有: System.Threading.Timer System.Timers.Timer PeriodicTimer System.Threading.Timer 是 .NET 中的基础定时器,…

2025年1月3日 0条评论 1511点热度 2人点赞 痴者工良 阅读全文
1234553