AI-exp-4/README.md
fly6516 c1152817c7 feat: 实现 NeRF 和 CNN 两种算法
- 新增 NeRF 和 CNN 的代码实现
- 添加实验报告和使用说明文档- 创建数据集说明文件
- 生成测试结果和可视化输出
2025-05-31 17:52:10 +08:00

34 lines
709 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# NeRF和CNN实验项目
## 项目结构
- `nerf/`NeRF算法实现代码
- `cnn/`CNN图像识别算法代码
- `data/`:数据集存储目录
- `results/`:训练结果保存目录
- `docs/`:实验报告文档
## 环境依赖
```bash
# 安装PyTorch根据CUDA版本选择对应命令
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
# 安装其他依赖
pip install numpy opencv-python matplotlib argparse
```
## 使用说明
### 运行NeRF实验
```bash
cd nerf
python nerf/train_nerf.py
python nerf/test_nerf.py
```
### 运行CNN实验
```bash
cd cnn
python cnn.py --data_path ../data
```
## 实验报告
详见docs/experiment_report.md文件