惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
罗磊的独立博客
腾讯CDC
云风的 BLOG
云风的 BLOG
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
U
Unit 42
I
InfoQ
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
美团技术团队
IT之家
IT之家
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
GbyAI
GbyAI
S
SegmentFault 最新的问题

Chivier's Blog

Agentic Coding 2025 AI 使用总结 27 lines of code for LLM inference Tiling in AI Compilation - From Theory to Hardware Acceleration Comprehensive Cerebras Note 1 - Go From A Simple Example WaferLLM:分布式 AI 系统的循环与突破 Breaking the GPU Paradigm - A Systems Thinker's Guide to Wafer Scale Computing Breaking the GPU Paradigm - A Systems Thinker's Guide to Wafer Scale Computing AI Industry Comprehensive Analysis - June 2025 State of Development Modern LLM and VLM Training Methods - Comprehensive 2025 Guide Tenstorrent GraySkull Note Lanno Version 1 Lanno 正式版本发布 深深梦几许,猎猎青云中 —— DeepSeek 和无意义的变革 大道求索,无问西东 - 从 DeepSeek 看 MLSys 的 2025 DeepRead 开发笔记 Brief AI Accelerator History 2D Mesh QA O2H auto publish 从 2024 Google IO 看下一场竞争
Fake empty data generator
Chivier Humber · 2024-08-13 · via Chivier's Blog

A very useful script to generate a fake dataset in AI training (empty data files)

1
2
3
4
ls -1 $PATHNAME | while IFS= read -r file; do
echo "$file"
touch fake/$file
done