Learn

learn-ue-ui

learn ue ui Created: 2023-10-24T15:29+08:00 Published: 2023-10-25T12:47+08:00 目录IntroWidgetsText Box(Multi-Line) Intro User Interface Development - Un ......
learn-ue-ui learn ue ui

Scikit-learn 的 preprocessing.LabelEncoder函数:标签编码

参考文档:https://pythonjishu.com/sklearn-preprocessing-labelencoder/ 转换类别数据为整数:LabelEncoder 可以将字符串或其他类别型数据转换为整数。例如,如果你有一个特征包含类别 "红色"、"绿色" 和 "蓝色",LabelEnco ......

Learn Git in 30 days—— 第 30 天:分享工作中几个好用的 Git 操作技巧

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 终于来到了最后一天,这篇文章将分享几个好用的 Git 操作技巧,或许可以节省你不少 Git 版控过程的时间。 如 ......
Git 技巧 Learn 30 days

Prom Learn

官方文档参考连接:https://prometheus.io/docs/prometheus/latest/querying/basics/ 表达式和数据类型 Instant vector Range vector Scalar String 1. 瞬时变量vs范围变量 Instan Vector允 ......
Learn Prom

Learn Git in 30 days—— 第 29 天:如何将 Subversion 项目汇入到 Git 仓库

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 当你越来越了解 Git 版本控制,一定会越来越想把手边的 Subversion ( 简称 SVN ) 项目改用 ......
Subversion 仓库 Git 项目 Learn

Learn Git in 30 days—— 第 28 天:了解 GitHub 的 fork 与 pull request 版控流程

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 我们知道 Git 仓库并没有什么「权限控制」的概念,因为他是分散式的版本控制系统,当你执行 git clone  ......
流程 request GitHub Learn days

Learn Git in 30 days—— 第 27 天:通过分支在同一个远端仓库中进行版控

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 如果在公司内部只有一个共用的 Git 远端仓库,大家都有存取权限的情況下,可能会遇到一些协同作业上的问题,那就是 ......
分支 仓库 Learn days Git

The Road to learn React

React基础 组件内部状态 组件内部状态也称之为局部状态,允许保存、修改和删除存储在组件内部的属性 使用ES6类组件可以在构造函数种初始化组件的状态,构造函数只会在组件初始化的时候调用一次 const list = [ { title: 'React', url: 'https://faceboo ......
React learn Road The to

scikit-learn

sklearn是Python的一个第三方机器学习库,全称为scikit-learn。它提供了多种机器学习方法,如分类、回归和聚类算法等,包括支持向量机、随机森林、梯度提升、k均值和DBSCAN等。用户可以通过调用sklearn库中的模块来执行大多数机器学习任务,而无需自己实现算法。在安装和使用skl ......
scikit-learn scikit learn

Learn Git in 30 days—— 第 26 天:多人在同一个远端仓库中进行版控

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 一个人用的版本控制,只能算是当作原始码历史备份工具,在大多数的情況下,版本控制机制都是设计给多人共同使用的,尤其 ......
仓库 多人 Learn days Git

Learn Git in 30 days—— 第 25 天:使用 GitHub 远端仓库 - 观念篇

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 上一篇大家学会了如何下载远端仓库 (git clone, git pull) 与上传远端仓库 (git push ......
仓库 观念 GitHub Learn days

Learn Git in 30 days—— 第 24 天:使用 GitHub 远端仓库 - 入门篇

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn GitHub 是目前全世界最多人采用的 Git 线上管理平台,他包含了完整的 Git 远端仓库实作,还有完整的议 ......
仓库 GitHub Learn days Git

Machine Learning for Beginners(scikit-learn module)

Machine Learning Common Lifycycle Import the Data Clean the Data Split the Data into Training/Test Sets Create a Model Train the Model Make Prediction ......

Learn Everyday English for Speaking

专有名词 salmon:三文鱼 chocolate fountain:巧克力喷泉 drum and bass: 鼓和贝斯 Spaghetti:意大利面 adrenaline:肾上腺素 首句English You're telling me? 还用你说。这是一个表示“你不用告诉我,我已经知道了”的表达 ......
Everyday Speaking English Learn for

Learn Git in 30 days—— 第 23 天:修正 commit 过的版本历史记录 Part 5

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 我们上一篇文章谈到的 Rebase 是用来将现有的两个分支进行「重新指定基础版本」,执行 Rebase 之后,也 ......
版本 commit 历史 Learn days

Learn Git in 30 days——第 22 天:修正 commit 过的版本历史记录 Part 4 (Rebase)

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 我们之前已经讲了三种不同的修正版本的方法,严格上来说 git revert 与 git cherry-pick  ......
版本 commit Rebase 历史 Learn

Learn Git in 30 days——第 21 天:修正 commit 过的版本历史记录 Part 3

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在版本控制过程中,还有个常见的状況,那就是当你在一个分支中开发了一段时间,但后来决定整个分支都不要了,不过当中却 ......
版本 commit 历史 Learn days

Learn Git in 30 days——第 20 天:修正 commit 过的版本历史记录 Part 2

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在版本控制过程中,还有个常见的状況,那就是当执行了多个版本之后,才发现前面有几个版本改错了,例如你不小心把测试中 ......
版本 commit 历史 Learn days

Learn Git in 30 days——第 19 天:设定 .gitignore 忽略清单

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在开发项目时,工作目录下可能经常会有新的文件产生 (可能是通过 Visual Studio 工具产生的那些暂存文 ......
清单 gitignore Learn days Git

Learn Git in 30 days——第 18 天:修正 commit 过的版本历史记录 Part 1

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 当你使用 Git 进行版本控制时,我们会利用 git commit 建立许多版本,由于 Git 属分布式版本控制 ......
版本 commit 历史 Learn days

Learn Git in 30 days——第 17 天:关于合并的基本观念与使用方式

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 我曾在【第 08 天:关于分支的基本观念与使用方式】提过关于「分支」的基本观念与用法,现在则要来讲「合并」如何进 ......
观念 方式 Learn days Git

Learn Git in 30 days——第 16 天:善用版本日志 git reflog 追踪变更轨迹

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 其实学习 Git 版本控制的指令操作并不难,但要弄清楚 Git 到底对我的仓库做了什么事,还真不太容易。当你一步 ......
轨迹 版本 reflog Learn 日志

Learn Git in 30 days——第 15 天:标签 - 标记版本控制过程中的重要事件

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在使用 Git 版本控制的过程中,会产生大量的版本,随着寒暑易节、物换星移,在这众多的版本之中,一定会有一些值得 ......
标记 过程 版本 事件 标签

Learn Git in 30 days——第 14 天: Git for Windows 选项设定

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 使用 Git for Windows 指令列工具绝对比通过 GUI 工具操作来的有效率,原因就在于你可以把许多重 ......
Git Windows Learn days for

Learn Git in 30 days——第 13 天:暂存工作目录与索引的变更状态

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 有没有遇过这种情境,某个系统开发写到一半,结果被老板或客戶「插单」,被要求紧急修正一个现有系统的 Bug 或添加 ......
索引 状态 目录 Learn days

Learn Git in 30 days——第 12 天:认识 Git 物件的相对名称

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在认识了 Git 物件的「绝对名称」与「参照名称」后,最后我们来介绍 Git 版控过程中也很常用到的「相对名称」 ......
物件 Git 名称 Learn days

Learn Git in 30 days——第 11 天:认识 Git 物件的一般参照与符号参照

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在认识了 Git 物件的「绝对名称」后,接下来就要介绍 Git 版控过程中最常用到的「参照名称」。 认识物件的参 ......
物件 Git 符号 Learn days

Learn Git in 30 days——第 10 天:认识 Git 物件的绝对名称

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在 Git 版本控制的过程,每一个版本就代表一个 commit 物件。又因为版控过程中经常会建立分支,最终产出的 ......
物件 Git 名称 Learn days

Learn Git in 30 days——第 09 天:比对文件与版本差异

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 使用任何版本控制软件的过程中,经常会需要查看历史记录与比对版本之间的差异。而在使用 Git 的时候要如何进行比对 ......
差异 版本 文件 Learn days

Learn Git in 30 days——第 08 天:关于分支的基本观念与使用方式

写的非常好的一个Git系列文章,强烈推荐 原文链接:https://github.com/doggy8088/Learn-Git-in-30-days/tree/master/zh-cn 在 Git 里面 分支 (Branch) 是个非常重要的机制,使用上也必须特别小心,因为项目总不能无限制的「分支 ......
分支 观念 方式 Learn days