Library Search
结果页autolog 一行自动追踪 + 对比实验
在 元器件 / 技术栈 / 知识库 中找到 14 个匹配结果。
技术栈
技术栈
6 个 MLflow # MLflow autolog:一行代码自动追踪实验
## 目标
用 `mlflow.autolog()` 一行代码自动记录 XGBoost 训练的所有参数、指标、模型,然后在 UI 中对比多次实验。
## 完整代码
```python
import mlflow
import xgboost as xgb
from sklearn.datasets import load_breast… 3% OpenCV # OpenCV 毕设入门教程——计算机视觉实战
## 前言
OpenCV 是毕设中**图像处理/计算机视觉**方向的首选库。常见毕设题目:**车牌识别、人脸考勤系统、手势识别、医学图像分割、车道线检测**。
---
## 第一章:OpenCV 核心数据结构
### cv::Mat —— 一切图像的基础
```cpp
cv::Mat img;… 2% FastAI # FastAI 入门教程:DataBlock 与 lr_find
## 1. FastAI 的哲学
FastAI 的三条原则:
1. **类型派发(type dispatch)**:框架检测你的数据类型(图像/文本/表格),自动应用最佳增强和预处理
2. **最佳实践内置**:`fine_tune()` 内含差分学习率、渐进式解冻、1-cycle 策略
3. **声明式 > 命令式**:描… 2% MyBatis-Plus @DeleteMapping("/{id}")
public String delete(@PathVariable Long id) {
return userService.delete(id) ? "删除成功" : "删除失败";
}
}
```
## 运行步骤
```bash
# 1. 数据库建表
CREATE TABLE user (
id B… 1% Spring Data JPA # Spring Data JPA 深入与性能优化教程
## 第一章:实体映射详解
### 1.1 关联关系
```java
@Entity
public class Order {
@Id @GeneratedValue
private Long id;
@ManyToOne(fetch = FetchType.LAZY) // 默认 LAZY,建议显式声明… 1% Scikit-learn # Scikit-learn 机器学习入门实战
## 背景
Scikit-learn 提供了「瑞士军刀」式的机器学习工具箱。无论你是做表格数据的分类、用户分群还是异常检测,掌握它能让你在几分钟内完成从数据处理到模型评估的完整流程。
---
## 第 1 章:理解 API 设计哲学
Scikit-learn 所有模型遵循统一接口:
| 模式 | 伪代码 |
|------|-------… 1%
知识库
知识库
8 个 autolog 一行自动追踪 + 对比实验 # MLflow autolog:一行代码自动追踪实验
## 目标
用 `mlflow.autolog()` 一行代码自动记录 XGBoost 训练的所有参数、指标、模型,然后在 UI 中对比多次实验。
## 完整代码
```python
import mlflow
import xgboost as xgb
from sklearn.datasets import load_breast… 3% MLflow 四件套:Tracking_Projects_Models_Registry 与审批流转
```
## 2. Tracking:手动 vs 自动
### autolog(最简单)
```python
mlflow.autolog() # 支持 PyTorch、TF、XGBoost、LightGBM、spaCy...
```
### 手动记录(更灵活)
```python
with mlflow.start_run(run_name="my_run"):
ml… 3% 02-controller-rest-api // DELETE /api/users/{id}
[HttpDelete("{id:int}")]
public IActionResult Delete(int id)
{
var user = _users.FirstOrDefault(u => u.Id == id);
if (user is null) return NotFoun… 2% OpenCV 毕设入门教程——计算机视觉实战 # OpenCV 毕设入门教程——计算机视觉实战
## 前言
OpenCV 是毕设中**图像处理/计算机视觉**方向的首选库。常见毕设题目:**车牌识别、人脸考勤系统、手势识别、医学图像分割、车道线检测**。
---
## 第一章:OpenCV 核心数据结构
### cv::Mat —— 一切图像的基础
```cpp
cv::Mat img;… 2% DataBlock 声明式数据管道与学习率调参 # FastAI 入门教程:DataBlock 与 lr_find
## 1. FastAI 的哲学
FastAI 的三条原则:
1. **类型派发(type dispatch)**:框架检测你的数据类型(图像/文本/表格),自动应用最佳增强和预处理
2. **最佳实践内置**:`fine_tune()` 内含差分学习率、渐进式解冻、1-cycle 策略
3. **声明式 > 命令式**:描… 1% K230-CanMV 开发板 — CanMV MicroPython 代码例程 # 画检测框
for det in results:
x, y, w, h = det['bbox']
cls = det['class']
conf = det['confidence']
img.draw_rectangle(x, y, w, h, color=(0, 255, 0)… 1% 用户 CRUD——BaseMapper 与条件构造器 @DeleteMapping("/{id}")
public String delete(@PathVariable Long id) {
return userService.delete(id) ? "删除成功" : "删除失败";
}
}
```
## 运行步骤
```bash
# 1. 数据库建表
CREATE TABLE user (
id B… 1% 02-time-series-and-io # CSV —— 指定数据类型加速读取
df = pd.read_csv("large_file.csv",
dtype={"customer_id": "int32", "product": "category"},
parse_dates=["order_date"],
usecols=["customer_id", "product", "amount", "orde… 1%