CoolFace
Datasetpublic

ratanon/claude-code

claude-code Dataset Description This dataset contains crawled documentation formatted for LLM training and RAG systems. Dataset Statistics Total Pages: 29 Total Words: 27764 Total Chunks: 29 Source URL: https://docs.anthropic.com/en/docs/claude-code/ Crawled Date: 2025-06-24T09:05:29.246208 Directory Structure llm_ready/ - Plain text files optimized for LLM training jsonl/ - JSONL format for fine-tuning chunks/ - Chunked content… See the full description on the dataset page: https://huggingface.co/datasets/ratanon/claude-code.

sourceHugging Faceupdated 1y agoView on Hugging Face
1likes4.7kdownloads
README.md58 linesDownload Raw Back to root
1---2dataset_info:3  features:4  - name: text5    dtype: string6  - name: title7    dtype: string8  - name: url9    dtype: string10  - name: metadata11    dtype: string12task_categories:13- text-generation14- question-answering15language:16- en17- th18size_categories:19- 1K<n<10K20---21 22# claude-code23 24## Dataset Description25 26This dataset contains crawled documentation formatted for LLM training and RAG systems.27 28### Dataset Statistics29- **Total Pages**: 2930- **Total Words**: 2776431- **Total Chunks**: 2932- **Source URL**: https://docs.anthropic.com/en/docs/claude-code/33- **Crawled Date**: 2025-06-24T09:05:29.24620834 35### Directory Structure36 37- `llm_ready/` - Plain text files optimized for LLM training38- `jsonl/` - JSONL format for fine-tuning39- `chunks/` - Chunked content for RAG systems40- `embeddings/` - Vector database ready format41 42### Usage43 44```python45from datasets import load_dataset46 47# Load the dataset48dataset = load_dataset("ratanon/claude-code")49 50# Access the data51for example in dataset['train']:52    print(example['text'])53```54 55### License56 57Educational and research use. Please respect original source licensing.58