Text Generation
Transformers
Safetensors
PyTorch
English
gpt2
lm
language-model
causal-lm
causal-language-model
decoder-only
base-model
pretraining
small-language-model
applemind
applemind10
applemind10-mini
fineweb-edu
fineweb-hq
smollm-corpus
cosmopedia-v2
custom-code
custom-architecture
trust-remote-code
conversational
text-generation-inference
Instructions to use AppleMind-AI/AppleMind-1.0-Mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AppleMind-AI/AppleMind-1.0-Mini with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="AppleMind-AI/AppleMind-1.0-Mini") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("AppleMind-AI/AppleMind-1.0-Mini") model = AutoModelForCausalLM.from_pretrained("AppleMind-AI/AppleMind-1.0-Mini", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use AppleMind-AI/AppleMind-1.0-Mini with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AppleMind-AI/AppleMind-1.0-Mini" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AppleMind-AI/AppleMind-1.0-Mini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/AppleMind-AI/AppleMind-1.0-Mini
- SGLang
How to use AppleMind-AI/AppleMind-1.0-Mini with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "AppleMind-AI/AppleMind-1.0-Mini" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AppleMind-AI/AppleMind-1.0-Mini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "AppleMind-AI/AppleMind-1.0-Mini" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AppleMind-AI/AppleMind-1.0-Mini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use AppleMind-AI/AppleMind-1.0-Mini with Docker Model Runner:
docker model run hf.co/AppleMind-AI/AppleMind-1.0-Mini
Create LOGS.md
Browse files
LOGS.md
ADDED
|
@@ -0,0 +1,993 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Requirement already satisfied: transformers in /usr/local/lib/python3.12/dist-packages (5.13.1)
|
| 2 |
+
Collecting transformers
|
| 3 |
+
Downloading transformers-5.15.0-py3-none-any.whl.metadata (32 kB)
|
| 4 |
+
Requirement already satisfied: datasets in /usr/local/lib/python3.12/dist-packages (4.0.0)
|
| 5 |
+
Collecting datasets
|
| 6 |
+
Downloading datasets-5.0.1-py3-none-any.whl.metadata (23 kB)
|
| 7 |
+
Requirement already satisfied: accelerate in /usr/local/lib/python3.12/dist-packages (1.14.0)
|
| 8 |
+
Requirement already satisfied: huggingface_hub in /usr/local/lib/python3.12/dist-packages (1.23.0)
|
| 9 |
+
Collecting huggingface_hub
|
| 10 |
+
Downloading huggingface_hub-1.27.0-py3-none-any.whl.metadata (16 kB)
|
| 11 |
+
Requirement already satisfied: hf_xet in /usr/local/lib/python3.12/dist-packages (1.5.1)
|
| 12 |
+
Collecting hf_xet
|
| 13 |
+
Downloading hf_xet-1.6.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (4.9 kB)
|
| 14 |
+
Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.12/dist-packages (from transformers) (2.0.2)
|
| 15 |
+
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.12/dist-packages (from transformers) (26.2)
|
| 16 |
+
Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.12/dist-packages (from transformers) (6.0.3)
|
| 17 |
+
Requirement already satisfied: regex>=2025.10.22 in /usr/local/lib/python3.12/dist-packages (from transformers) (2025.11.3)
|
| 18 |
+
Requirement already satisfied: tokenizers<=0.23.0,>=0.22.0 in /usr/local/lib/python3.12/dist-packages (from transformers) (0.22.2)
|
| 19 |
+
Requirement already satisfied: typer in /usr/local/lib/python3.12/dist-packages (from transformers) (0.26.8)
|
| 20 |
+
Requirement already satisfied: safetensors>=0.8.0 in /usr/local/lib/python3.12/dist-packages (from transformers) (0.8.0)
|
| 21 |
+
Requirement already satisfied: tqdm>=4.60 in /usr/local/lib/python3.12/dist-packages (from transformers) (4.67.3)
|
| 22 |
+
Requirement already satisfied: filelock in /usr/local/lib/python3.12/dist-packages (from datasets) (3.29.7)
|
| 23 |
+
Collecting pyarrow>=21.0.0 (from datasets)
|
| 24 |
+
Downloading pyarrow-25.0.1-cp312-cp312-manylinux_2_28_x86_64.whl.metadata (3.0 kB)
|
| 25 |
+
Requirement already satisfied: dill<0.4.2,>=0.3.0 in /usr/local/lib/python3.12/dist-packages (from datasets) (0.3.8)
|
| 26 |
+
Requirement already satisfied: pandas in /usr/local/lib/python3.12/dist-packages (from datasets) (2.2.2)
|
| 27 |
+
Requirement already satisfied: requests>=2.32.2 in /usr/local/lib/python3.12/dist-packages (from datasets) (2.32.4)
|
| 28 |
+
Requirement already satisfied: httpx<1.0.0 in /usr/local/lib/python3.12/dist-packages (from datasets) (0.28.1)
|
| 29 |
+
Requirement already satisfied: xxhash in /usr/local/lib/python3.12/dist-packages (from datasets) (3.8.1)
|
| 30 |
+
Requirement already satisfied: multiprocess<0.70.20 in /usr/local/lib/python3.12/dist-packages (from datasets) (0.70.16)
|
| 31 |
+
Requirement already satisfied: fsspec<=2026.6.0,>=2023.1.0 in /usr/local/lib/python3.12/dist-packages (from fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (2025.3.0)
|
| 32 |
+
Requirement already satisfied: psutil in /usr/local/lib/python3.12/dist-packages (from accelerate) (5.9.5)
|
| 33 |
+
Requirement already satisfied: torch>=2.0.0 in /usr/local/lib/python3.12/dist-packages (from accelerate) (2.11.0+cu128)
|
| 34 |
+
Requirement already satisfied: click<9.0.0,>=8.4.2 in /usr/local/lib/python3.12/dist-packages (from huggingface_hub) (8.4.2)
|
| 35 |
+
Requirement already satisfied: typing-extensions>=4.1.0 in /usr/local/lib/python3.12/dist-packages (from huggingface_hub) (4.16.0)
|
| 36 |
+
Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /usr/local/lib/python3.12/dist-packages (from fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (3.14.1)
|
| 37 |
+
Requirement already satisfied: anyio in /usr/local/lib/python3.12/dist-packages (from httpx<1.0.0->datasets) (4.14.2)
|
| 38 |
+
Requirement already satisfied: certifi in /usr/local/lib/python3.12/dist-packages (from httpx<1.0.0->datasets) (2026.6.17)
|
| 39 |
+
Requirement already satisfied: httpcore==1.* in /usr/local/lib/python3.12/dist-packages (from httpx<1.0.0->datasets) (1.0.9)
|
| 40 |
+
Requirement already satisfied: idna in /usr/local/lib/python3.12/dist-packages (from httpx<1.0.0->datasets) (3.18)
|
| 41 |
+
Requirement already satisfied: h11>=0.16 in /usr/local/lib/python3.12/dist-packages (from httpcore==1.*->httpx<1.0.0->datasets) (0.16.0)
|
| 42 |
+
Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests>=2.32.2->datasets) (3.4.9)
|
| 43 |
+
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.12/dist-packages (from requests>=2.32.2->datasets) (2.5.0)
|
| 44 |
+
Requirement already satisfied: setuptools<82 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (75.2.0)
|
| 45 |
+
Requirement already satisfied: sympy>=1.13.3 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (1.14.0)
|
| 46 |
+
Requirement already satisfied: networkx>=2.5.1 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.6.1)
|
| 47 |
+
Requirement already satisfied: jinja2 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.1.6)
|
| 48 |
+
Requirement already satisfied: cuda-toolkit==12.8.1 in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.1)
|
| 49 |
+
Requirement already satisfied: cuda-bindings<13,>=12.9.4 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (12.9.7)
|
| 50 |
+
Requirement already satisfied: nvidia-cudnn-cu12==9.19.0.56 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (9.19.0.56)
|
| 51 |
+
Requirement already satisfied: nvidia-cusparselt-cu12==0.7.1 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (0.7.1)
|
| 52 |
+
Requirement already satisfied: nvidia-nccl-cu12==2.28.9 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (2.28.9)
|
| 53 |
+
Requirement already satisfied: nvidia-nvshmem-cu12==3.4.5 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.4.5)
|
| 54 |
+
Requirement already satisfied: triton==3.6.0 in /usr/local/lib/python3.12/dist-packages (from torch>=2.0.0->accelerate) (3.6.0)
|
| 55 |
+
Requirement already satisfied: nvidia-cublas-cu12==12.8.4.1.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.4.1)
|
| 56 |
+
Requirement already satisfied: nvidia-cuda-runtime-cu12==12.8.90.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.90)
|
| 57 |
+
Requirement already satisfied: nvidia-cufft-cu12==11.3.3.83.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (11.3.3.83)
|
| 58 |
+
Requirement already satisfied: nvidia-cufile-cu12==1.13.1.3.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (1.13.1.3)
|
| 59 |
+
Requirement already satisfied: nvidia-cuda-cupti-cu12==12.8.90.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.90)
|
| 60 |
+
Requirement already satisfied: nvidia-curand-cu12==10.3.9.90.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (10.3.9.90)
|
| 61 |
+
Requirement already satisfied: nvidia-cusolver-cu12==11.7.3.90.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (11.7.3.90)
|
| 62 |
+
Requirement already satisfied: nvidia-cusparse-cu12==12.5.8.93.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.5.8.93)
|
| 63 |
+
Requirement already satisfied: nvidia-nvjitlink-cu12==12.8.93.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.93)
|
| 64 |
+
Requirement already satisfied: nvidia-cuda-nvrtc-cu12==12.8.93.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.93)
|
| 65 |
+
Requirement already satisfied: nvidia-nvtx-cu12==12.8.90.* in /usr/local/lib/python3.12/dist-packages (from cuda-toolkit[cublas,cudart,cufft,cufile,cupti,curand,cusolver,cusparse,nvjitlink,nvrtc,nvtx]==12.8.1; platform_system == "Linux"->torch>=2.0.0->accelerate) (12.8.90)
|
| 66 |
+
Requirement already satisfied: python-dateutil>=2.8.2 in /usr/local/lib/python3.12/dist-packages (from pandas->datasets) (2.9.0.post0)
|
| 67 |
+
Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.12/dist-packages (from pandas->datasets) (2025.2)
|
| 68 |
+
Requirement already satisfied: tzdata>=2022.7 in /usr/local/lib/python3.12/dist-packages (from pandas->datasets) (2026.3)
|
| 69 |
+
Requirement already satisfied: shellingham>=1.3.0 in /usr/local/lib/python3.12/dist-packages (from typer->transformers) (1.5.4)
|
| 70 |
+
Requirement already satisfied: rich>=13.8.0 in /usr/local/lib/python3.12/dist-packages (from typer->transformers) (13.9.4)
|
| 71 |
+
Requirement already satisfied: annotated-doc>=0.0.2 in /usr/local/lib/python3.12/dist-packages (from typer->transformers) (0.0.4)
|
| 72 |
+
Requirement already satisfied: aiohappyeyeballs>=2.5.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (2.7.1)
|
| 73 |
+
Requirement already satisfied: aiosignal>=1.4.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (1.4.0)
|
| 74 |
+
Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (26.1.0)
|
| 75 |
+
Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (1.8.0)
|
| 76 |
+
Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (6.7.1)
|
| 77 |
+
Requirement already satisfied: propcache>=0.2.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (0.5.2)
|
| 78 |
+
Requirement already satisfied: yarl<2.0,>=1.17.0 in /usr/local/lib/python3.12/dist-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2026.6.0,>=2023.1.0->datasets) (1.24.2)
|
| 79 |
+
Requirement already satisfied: cuda-pathfinder~=1.1 in /usr/local/lib/python3.12/dist-packages (from cuda-bindings<13,>=12.9.4->torch>=2.0.0->accelerate) (1.5.6)
|
| 80 |
+
Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.12/dist-packages (from python-dateutil>=2.8.2->pandas->datasets) (1.17.0)
|
| 81 |
+
Requirement already satisfied: markdown-it-py>=2.2.0 in /usr/local/lib/python3.12/dist-packages (from rich>=13.8.0->typer->transformers) (4.2.0)
|
| 82 |
+
Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /usr/local/lib/python3.12/dist-packages (from rich>=13.8.0->typer->transformers) (2.20.0)
|
| 83 |
+
Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.12/dist-packages (from sympy>=1.13.3->torch>=2.0.0->accelerate) (1.3.0)
|
| 84 |
+
Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.12/dist-packages (from jinja2->torch>=2.0.0->accelerate) (3.0.3)
|
| 85 |
+
Requirement already satisfied: mdurl~=0.1 in /usr/local/lib/python3.12/dist-packages (from markdown-it-py>=2.2.0->rich>=13.8.0->typer->transformers) (0.1.2)
|
| 86 |
+
Downloading transformers-5.15.0-py3-none-any.whl (11.7 MB)
|
| 87 |
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.7/11.7 MB 133.0 MB/s eta 0:00:00
|
| 88 |
+
Downloading datasets-5.0.1-py3-none-any.whl (559 kB)
|
| 89 |
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 559.1/559.1 kB 48.0 MB/s eta 0:00:00
|
| 90 |
+
Downloading huggingface_hub-1.27.0-py3-none-any.whl (784 kB)
|
| 91 |
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 784.9/784.9 kB 61.8 MB/s eta 0:00:00
|
| 92 |
+
Downloading hf_xet-1.6.0-cp38-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.5 MB)
|
| 93 |
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.5/4.5 MB 132.9 MB/s eta 0:00:00
|
| 94 |
+
Downloading pyarrow-25.0.1-cp312-cp312-manylinux_2_28_x86_64.whl (50.1 MB)
|
| 95 |
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.1/50.1 MB 49.6 MB/s eta 0:00:00
|
| 96 |
+
Installing collected packages: pyarrow, hf_xet, huggingface_hub, datasets, transformers
|
| 97 |
+
Attempting uninstall: pyarrow
|
| 98 |
+
Found existing installation: pyarrow 18.1.0
|
| 99 |
+
Uninstalling pyarrow-18.1.0:
|
| 100 |
+
Successfully uninstalled pyarrow-18.1.0
|
| 101 |
+
Attempting uninstall: hf_xet
|
| 102 |
+
Found existing installation: hf-xet 1.5.1
|
| 103 |
+
Uninstalling hf-xet-1.5.1:
|
| 104 |
+
Successfully uninstalled hf-xet-1.5.1
|
| 105 |
+
Attempting uninstall: huggingface_hub
|
| 106 |
+
Found existing installation: huggingface_hub 1.23.0
|
| 107 |
+
Uninstalling huggingface_hub-1.23.0:
|
| 108 |
+
Successfully uninstalled huggingface_hub-1.23.0
|
| 109 |
+
Attempting uninstall: datasets
|
| 110 |
+
Found existing installation: datasets 4.0.0
|
| 111 |
+
Uninstalling datasets-4.0.0:
|
| 112 |
+
Successfully uninstalled datasets-4.0.0
|
| 113 |
+
Attempting uninstall: transformers
|
| 114 |
+
Found existing installation: transformers 5.13.1
|
| 115 |
+
Uninstalling transformers-5.13.1:
|
| 116 |
+
Successfully uninstalled transformers-5.13.1
|
| 117 |
+
Successfully installed datasets-5.0.1 hf_xet-1.6.0 huggingface_hub-1.27.0 pyarrow-25.0.1 transformers-5.15.0
|
| 118 |
+
To log in, open this URL and enter the code:https://hf.co/oauth/device1JHU-54EFWaiting for authorization...Login successful. Logged in as GGUFGuy (token: oauth-GGUFGuy).This token will be refreshed automatically when it expires.
|
| 119 |
+
======================================================================
|
| 120 |
+
AppleMind 1.0 Mini
|
| 121 |
+
Colab L4 High-RAM
|
| 122 |
+
300M TOKEN PRETRAINING
|
| 123 |
+
======================================================================
|
| 124 |
+
|
| 125 |
+
Device: cuda
|
| 126 |
+
GPU: NVIDIA L4
|
| 127 |
+
VRAM: 22.03 GB
|
| 128 |
+
CUDA: 12.8
|
| 129 |
+
|
| 130 |
+
Total training tokens: 300,000,000
|
| 131 |
+
Target ratio: ~300:1
|
| 132 |
+
|
| 133 |
+
======================================================================
|
| 134 |
+
DATASET MIXTURE
|
| 135 |
+
======================================================================
|
| 136 |
+
|
| 137 |
+
FineWeb-Edu sample-10BT : 100,000,000
|
| 138 |
+
FineWeb-HQ : 100,000,000
|
| 139 |
+
SmolLM-Corpus : 100,000,000
|
| 140 |
+
|
| 141 |
+
TOTAL : 300,000,000
|
| 142 |
+
|
| 143 |
+
TinyStories: REMOVED
|
| 144 |
+
WikiText: REMOVED
|
| 145 |
+
Local datasets: REMOVED
|
| 146 |
+
Dataset cycling: DISABLED
|
| 147 |
+
|
| 148 |
+
======================================================================
|
| 149 |
+
LOADING GPT-2 TOKENIZER
|
| 150 |
+
======================================================================
|
| 151 |
+
tokenizer_config.json: 100% 26.0/26.0 [00:00<00:00, 3.04kB/s]vocab.json: 100% 1.04M/1.04M [00:00<00:00, 15.7MB/s]merges.txt: 100% 456k/456k [00:00<00:00, 5.83MB/s]tokenizer.json: 100% 1.36M/1.36M [00:00<00:00, 28.9MB/s]
|
| 152 |
+
Vocabulary: 50,260
|
| 153 |
+
Special tokens added: 3
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
======================================================================
|
| 157 |
+
CREATING APPLEMIND
|
| 158 |
+
======================================================================
|
| 159 |
+
|
| 160 |
+
Parameters: 1,020,480
|
| 161 |
+
Trainable: 1,020,480
|
| 162 |
+
|
| 163 |
+
Target tokens: 300,000,000
|
| 164 |
+
Target token/parameter ratio: 293.98:1
|
| 165 |
+
|
| 166 |
+
|
| 167 |
+
======================================================================
|
| 168 |
+
SETTING UP HUGGING FACE
|
| 169 |
+
======================================================================
|
| 170 |
+
|
| 171 |
+
Logged in as:
|
| 172 |
+
GGUFGuy
|
| 173 |
+
|
| 174 |
+
Checkpoint repository ready:
|
| 175 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints
|
| 176 |
+
|
| 177 |
+
Final model repository ready:
|
| 178 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini
|
| 179 |
+
Precision: BF16
|
| 180 |
+
|
| 181 |
+
======================================================================
|
| 182 |
+
TRAINING CONFIGURATION
|
| 183 |
+
======================================================================
|
| 184 |
+
|
| 185 |
+
Parameters: 1,020,480
|
| 186 |
+
Training tokens: 300,000,000
|
| 187 |
+
Tokens/parameter: 293.98:1
|
| 188 |
+
|
| 189 |
+
Micro batch size: 64
|
| 190 |
+
Gradient accumulation: 8
|
| 191 |
+
Effective batch: 512
|
| 192 |
+
Context length: 256
|
| 193 |
+
Tokens/micro batch: 16,384
|
| 194 |
+
Tokens/optimizer step: 131,072
|
| 195 |
+
Optimizer steps: 2,289
|
| 196 |
+
Warmup steps: 114
|
| 197 |
+
|
| 198 |
+
FineWeb-Edu: 100M
|
| 199 |
+
FineWeb-HQ: 100M
|
| 200 |
+
SmolLM: 100M
|
| 201 |
+
|
| 202 |
+
Checkpoint repository:
|
| 203 |
+
AppleMind-AI/AppleMind-1.0-Mini-Checkpoints
|
| 204 |
+
|
| 205 |
+
Final repository:
|
| 206 |
+
AppleMind-AI/AppleMind-1.0-Mini
|
| 207 |
+
|
| 208 |
+
======================================================================
|
| 209 |
+
STARTING 300M-TOKEN PRETRAINING
|
| 210 |
+
======================================================================
|
| 211 |
+
|
| 212 |
+
Opening FineWeb-Edu sample-10BT...
|
| 213 |
+
README.md: 100% 26.4k/26.4k [00:00<00:00, 2.88MB/s]Resolving data files: 100% 2410/2410 [00:00<00:00, 23346.46it/s]
|
| 214 |
+
======================================================================
|
| 215 |
+
STREAMING FineWeb-Edu
|
| 216 |
+
======================================================================
|
| 217 |
+
|
| 218 |
+
Target tokens: 100,000,000
|
| 219 |
+
Progress state: 0
|
| 220 |
+
|
| 221 |
+
[transformers] `loss_type=None` was set in the config but it is unrecognized. Using the default loss: `ForCausalLMLoss`.
|
| 222 |
+
FineWeb-Edu: 1,000,131 / 100,000,000 tokens
|
| 223 |
+
FineWeb-Edu: 2,001,441 / 100,000,000 tokens
|
| 224 |
+
FineWeb-Edu: 3,001,677 / 100,000,000 tokens
|
| 225 |
+
FineWeb-Edu: 4,003,530 / 100,000,000 tokens
|
| 226 |
+
FineWeb-Edu: 5,003,864 / 100,000,000 tokens
|
| 227 |
+
FineWeb-Edu: 6,014,497 / 100,000,000 tokens
|
| 228 |
+
FineWeb-Edu: 7,014,690 / 100,000,000 tokens
|
| 229 |
+
FineWeb-Edu: 8,014,892 / 100,000,000 tokens
|
| 230 |
+
FineWeb-Edu: 9,015,759 / 100,000,000 tokens
|
| 231 |
+
FineWeb-Edu: 10,016,701 / 100,000,000 tokens
|
| 232 |
+
FineWeb-Edu: 11,042,613 / 100,000,000 tokens
|
| 233 |
+
FineWeb-Edu: 12,043,456 / 100,000,000 tokens
|
| 234 |
+
FineWeb-Edu: 13,044,297 / 100,000,000 tokens
|
| 235 |
+
|
| 236 |
+
Step 100/2,289 | Loss 10.8201 | LR 2.632e-05 | 100,991 tok/s | 13,107,200 tokens | 4.37% | 0.04h
|
| 237 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 238 |
+
|
| 239 |
+
|
| 240 |
+
Saving checkpoint-100...
|
| 241 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 19.95it/s]
|
| 242 |
+
======================================================================
|
| 243 |
+
UPLOADING CHECKPOINT 100
|
| 244 |
+
======================================================================
|
| 245 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 246 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 247 |
+
|
| 248 |
+
Checkpoint uploaded to:
|
| 249 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-100
|
| 250 |
+
FineWeb-Edu: 14,051,468 / 100,000,000 tokens
|
| 251 |
+
FineWeb-Edu: 15,057,858 / 100,000,000 tokens
|
| 252 |
+
FineWeb-Edu: 16,058,350 / 100,000,000 tokens
|
| 253 |
+
FineWeb-Edu: 17,058,910 / 100,000,000 tokens
|
| 254 |
+
FineWeb-Edu: 18,059,120 / 100,000,000 tokens
|
| 255 |
+
FineWeb-Edu: 19,059,214 / 100,000,000 tokens
|
| 256 |
+
FineWeb-Edu: 20,060,034 / 100,000,000 tokens
|
| 257 |
+
FineWeb-Edu: 21,061,034 / 100,000,000 tokens
|
| 258 |
+
FineWeb-Edu: 22,061,243 / 100,000,000 tokens
|
| 259 |
+
FineWeb-Edu: 23,061,857 / 100,000,000 tokens
|
| 260 |
+
FineWeb-Edu: 24,068,376 / 100,000,000 tokens
|
| 261 |
+
FineWeb-Edu: 25,068,451 / 100,000,000 tokens
|
| 262 |
+
FineWeb-Edu: 26,069,133 / 100,000,000 tokens
|
| 263 |
+
|
| 264 |
+
Step 200/2,289 | Loss 10.7533 | LR 2.990e-05 | 103,793 tok/s | 26,214,400 tokens | 8.74% | 0.07h
|
| 265 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 266 |
+
|
| 267 |
+
|
| 268 |
+
Saving checkpoint-200...
|
| 269 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 11.00it/s]
|
| 270 |
+
======================================================================
|
| 271 |
+
UPLOADING CHECKPOINT 200
|
| 272 |
+
======================================================================
|
| 273 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 274 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 275 |
+
|
| 276 |
+
Checkpoint uploaded to:
|
| 277 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-200
|
| 278 |
+
FineWeb-Edu: 27,075,071 / 100,000,000 tokens
|
| 279 |
+
FineWeb-Edu: 28,080,714 / 100,000,000 tokens
|
| 280 |
+
FineWeb-Edu: 29,080,972 / 100,000,000 tokens
|
| 281 |
+
FineWeb-Edu: 30,085,136 / 100,000,000 tokens
|
| 282 |
+
FineWeb-Edu: 31,085,689 / 100,000,000 tokens
|
| 283 |
+
FineWeb-Edu: 32,086,415 / 100,000,000 tokens
|
| 284 |
+
FineWeb-Edu: 33,095,884 / 100,000,000 tokens
|
| 285 |
+
FineWeb-Edu: 34,096,837 / 100,000,000 tokens
|
| 286 |
+
FineWeb-Edu: 35,097,143 / 100,000,000 tokens
|
| 287 |
+
FineWeb-Edu: 36,097,343 / 100,000,000 tokens
|
| 288 |
+
FineWeb-Edu: 37,104,064 / 100,000,000 tokens
|
| 289 |
+
FineWeb-Edu: 38,104,207 / 100,000,000 tokens
|
| 290 |
+
FineWeb-Edu: 39,105,073 / 100,000,000 tokens
|
| 291 |
+
|
| 292 |
+
Step 300/2,289 | Loss 10.6609 | LR 2.952e-05 | 104,146 tok/s | 39,321,600 tokens | 13.11% | 0.11h
|
| 293 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 294 |
+
|
| 295 |
+
|
| 296 |
+
Saving checkpoint-300...
|
| 297 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.94it/s]
|
| 298 |
+
======================================================================
|
| 299 |
+
UPLOADING CHECKPOINT 300
|
| 300 |
+
======================================================================
|
| 301 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 302 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 303 |
+
|
| 304 |
+
Checkpoint uploaded to:
|
| 305 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-300
|
| 306 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-100
|
| 307 |
+
FineWeb-Edu: 40,107,907 / 100,000,000 tokens
|
| 308 |
+
FineWeb-Edu: 41,108,319 / 100,000,000 tokens
|
| 309 |
+
FineWeb-Edu: 42,108,687 / 100,000,000 tokens
|
| 310 |
+
FineWeb-Edu: 43,108,744 / 100,000,000 tokens
|
| 311 |
+
FineWeb-Edu: 44,109,584 / 100,000,000 tokens
|
| 312 |
+
FineWeb-Edu: 45,109,641 / 100,000,000 tokens
|
| 313 |
+
FineWeb-Edu: 46,110,333 / 100,000,000 tokens
|
| 314 |
+
FineWeb-Edu: 47,110,722 / 100,000,000 tokens
|
| 315 |
+
FineWeb-Edu: 48,111,125 / 100,000,000 tokens
|
| 316 |
+
FineWeb-Edu: 49,111,530 / 100,000,000 tokens
|
| 317 |
+
FineWeb-Edu: 50,113,218 / 100,000,000 tokens
|
| 318 |
+
FineWeb-Edu: 51,113,865 / 100,000,000 tokens
|
| 319 |
+
FineWeb-Edu: 52,114,128 / 100,000,000 tokens
|
| 320 |
+
|
| 321 |
+
Step 400/2,289 | Loss 10.5818 | LR 2.887e-05 | 104,108 tok/s | 52,428,800 tokens | 17.48% | 0.14h
|
| 322 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 323 |
+
|
| 324 |
+
|
| 325 |
+
Saving checkpoint-400...
|
| 326 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.91it/s]
|
| 327 |
+
======================================================================
|
| 328 |
+
UPLOADING CHECKPOINT 400
|
| 329 |
+
======================================================================
|
| 330 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 331 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 332 |
+
|
| 333 |
+
Checkpoint uploaded to:
|
| 334 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-400
|
| 335 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-200
|
| 336 |
+
FineWeb-Edu: 53,114,351 / 100,000,000 tokens
|
| 337 |
+
FineWeb-Edu: 54,115,268 / 100,000,000 tokens
|
| 338 |
+
FineWeb-Edu: 55,115,867 / 100,000,000 tokens
|
| 339 |
+
FineWeb-Edu: 56,118,747 / 100,000,000 tokens
|
| 340 |
+
FineWeb-Edu: 57,118,792 / 100,000,000 tokens
|
| 341 |
+
FineWeb-Edu: 58,129,696 / 100,000,000 tokens
|
| 342 |
+
FineWeb-Edu: 59,129,772 / 100,000,000 tokens
|
| 343 |
+
FineWeb-Edu: 60,130,463 / 100,000,000 tokens
|
| 344 |
+
FineWeb-Edu: 61,130,846 / 100,000,000 tokens
|
| 345 |
+
FineWeb-Edu: 62,131,974 / 100,000,000 tokens
|
| 346 |
+
FineWeb-Edu: 63,145,958 / 100,000,000 tokens
|
| 347 |
+
FineWeb-Edu: 64,146,051 / 100,000,000 tokens
|
| 348 |
+
FineWeb-Edu: 65,146,257 / 100,000,000 tokens
|
| 349 |
+
|
| 350 |
+
Step 500/2,289 | Loss 10.5081 | LR 2.797e-05 | 103,733 tok/s | 65,536,000 tokens | 21.85% | 0.18h
|
| 351 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 352 |
+
|
| 353 |
+
|
| 354 |
+
Saving checkpoint-500...
|
| 355 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.95it/s]
|
| 356 |
+
======================================================================
|
| 357 |
+
UPLOADING CHECKPOINT 500
|
| 358 |
+
======================================================================
|
| 359 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 360 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 361 |
+
|
| 362 |
+
Checkpoint uploaded to:
|
| 363 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-500
|
| 364 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-300
|
| 365 |
+
FineWeb-Edu: 66,147,176 / 100,000,000 tokens
|
| 366 |
+
FineWeb-Edu: 67,153,903 / 100,000,000 tokens
|
| 367 |
+
FineWeb-Edu: 68,163,652 / 100,000,000 tokens
|
| 368 |
+
FineWeb-Edu: 69,164,783 / 100,000,000 tokens
|
| 369 |
+
FineWeb-Edu: 70,166,355 / 100,000,000 tokens
|
| 370 |
+
FineWeb-Edu: 71,166,545 / 100,000,000 tokens
|
| 371 |
+
FineWeb-Edu: 72,167,733 / 100,000,000 tokens
|
| 372 |
+
FineWeb-Edu: 73,168,881 / 100,000,000 tokens
|
| 373 |
+
FineWeb-Edu: 74,175,780 / 100,000,000 tokens
|
| 374 |
+
FineWeb-Edu: 75,176,435 / 100,000,000 tokens
|
| 375 |
+
FineWeb-Edu: 76,177,413 / 100,000,000 tokens
|
| 376 |
+
FineWeb-Edu: 77,177,431 / 100,000,000 tokens
|
| 377 |
+
FineWeb-Edu: 78,179,729 / 100,000,000 tokens
|
| 378 |
+
|
| 379 |
+
Step 600/2,289 | Loss 10.4357 | LR 2.682e-05 | 104,154 tok/s | 78,643,200 tokens | 26.21% | 0.21h
|
| 380 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 381 |
+
|
| 382 |
+
|
| 383 |
+
Saving checkpoint-600...
|
| 384 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.96it/s]
|
| 385 |
+
======================================================================
|
| 386 |
+
UPLOADING CHECKPOINT 600
|
| 387 |
+
======================================================================
|
| 388 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 389 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 390 |
+
|
| 391 |
+
Checkpoint uploaded to:
|
| 392 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-600
|
| 393 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-400
|
| 394 |
+
FineWeb-Edu: 79,187,841 / 100,000,000 tokens
|
| 395 |
+
FineWeb-Edu: 80,187,924 / 100,000,000 tokens
|
| 396 |
+
FineWeb-Edu: 81,188,888 / 100,000,000 tokens
|
| 397 |
+
FineWeb-Edu: 82,189,255 / 100,000,000 tokens
|
| 398 |
+
FineWeb-Edu: 83,189,443 / 100,000,000 tokens
|
| 399 |
+
FineWeb-Edu: 84,192,547 / 100,000,000 tokens
|
| 400 |
+
FineWeb-Edu: 85,192,626 / 100,000,000 tokens
|
| 401 |
+
FineWeb-Edu: 86,193,916 / 100,000,000 tokens
|
| 402 |
+
FineWeb-Edu: 87,194,129 / 100,000,000 tokens
|
| 403 |
+
FineWeb-Edu: 88,196,386 / 100,000,000 tokens
|
| 404 |
+
FineWeb-Edu: 89,203,193 / 100,000,000 tokens
|
| 405 |
+
FineWeb-Edu: 90,203,499 / 100,000,000 tokens
|
| 406 |
+
FineWeb-Edu: 91,204,016 / 100,000,000 tokens
|
| 407 |
+
|
| 408 |
+
Step 700/2,289 | Loss 10.3676 | LR 2.546e-05 | 104,272 tok/s | 91,750,400 tokens | 30.58% | 0.25h
|
| 409 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 410 |
+
|
| 411 |
+
|
| 412 |
+
Saving checkpoint-700...
|
| 413 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.96it/s]
|
| 414 |
+
======================================================================
|
| 415 |
+
UPLOADING CHECKPOINT 700
|
| 416 |
+
======================================================================
|
| 417 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 418 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 419 |
+
|
| 420 |
+
Checkpoint uploaded to:
|
| 421 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-700
|
| 422 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-500
|
| 423 |
+
FineWeb-Edu: 92,205,445 / 100,000,000 tokens
|
| 424 |
+
FineWeb-Edu: 93,206,406 / 100,000,000 tokens
|
| 425 |
+
FineWeb-Edu: 94,215,721 / 100,000,000 tokens
|
| 426 |
+
FineWeb-Edu: 95,216,609 / 100,000,000 tokens
|
| 427 |
+
FineWeb-Edu: 96,218,844 / 100,000,000 tokens
|
| 428 |
+
FineWeb-Edu: 97,219,420 / 100,000,000 tokens
|
| 429 |
+
FineWeb-Edu: 98,219,961 / 100,000,000 tokens
|
| 430 |
+
FineWeb-Edu: 99,220,378 / 100,000,000 tokens
|
| 431 |
+
|
| 432 |
+
FineWeb-Edu complete: 100,000,000 tokens
|
| 433 |
+
Opening FineWeb-HQ...
|
| 434 |
+
README.md: 100% 4.65k/4.65k [00:00<00:00, 385kB/s]Resolving data files: 100% 9246/9246 [00:00<00:00, 25238.04it/s]
|
| 435 |
+
======================================================================
|
| 436 |
+
STREAMING FineWeb-HQ
|
| 437 |
+
======================================================================
|
| 438 |
+
|
| 439 |
+
Target tokens: 100,000,000
|
| 440 |
+
Progress state: 0
|
| 441 |
+
|
| 442 |
+
FineWeb-HQ: 1,000,237 / 100,000,000 tokens
|
| 443 |
+
FineWeb-HQ: 2,000,353 / 100,000,000 tokens
|
| 444 |
+
FineWeb-HQ: 3,000,648 / 100,000,000 tokens
|
| 445 |
+
FineWeb-HQ: 4,001,578 / 100,000,000 tokens
|
| 446 |
+
|
| 447 |
+
Step 800/2,289 | Loss 10.3038 | LR 2.391e-05 | 98,189 tok/s | 104,857,600 tokens | 34.95% | 0.28h
|
| 448 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 449 |
+
|
| 450 |
+
|
| 451 |
+
Saving checkpoint-800...
|
| 452 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.89it/s]
|
| 453 |
+
======================================================================
|
| 454 |
+
UPLOADING CHECKPOINT 800
|
| 455 |
+
======================================================================
|
| 456 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 457 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 458 |
+
|
| 459 |
+
Checkpoint uploaded to:
|
| 460 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-800
|
| 461 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-600
|
| 462 |
+
FineWeb-HQ: 5,003,165 / 100,000,000 tokens
|
| 463 |
+
FineWeb-HQ: 6,003,192 / 100,000,000 tokens
|
| 464 |
+
FineWeb-HQ: 7,003,245 / 100,000,000 tokens
|
| 465 |
+
FineWeb-HQ: 8,005,095 / 100,000,000 tokens
|
| 466 |
+
FineWeb-HQ: 9,005,500 / 100,000,000 tokens
|
| 467 |
+
FineWeb-HQ: 10,005,995 / 100,000,000 tokens
|
| 468 |
+
FineWeb-HQ: 11,006,275 / 100,000,000 tokens
|
| 469 |
+
FineWeb-HQ: 12,006,703 / 100,000,000 tokens
|
| 470 |
+
FineWeb-HQ: 13,008,348 / 100,000,000 tokens
|
| 471 |
+
FineWeb-HQ: 14,039,910 / 100,000,000 tokens
|
| 472 |
+
FineWeb-HQ: 15,040,042 / 100,000,000 tokens
|
| 473 |
+
FineWeb-HQ: 16,040,179 / 100,000,000 tokens
|
| 474 |
+
FineWeb-HQ: 17,040,530 / 100,000,000 tokens
|
| 475 |
+
|
| 476 |
+
Step 900/2,289 | Loss 10.2507 | LR 2.221e-05 | 103,602 tok/s | 117,964,800 tokens | 39.32% | 0.32h
|
| 477 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 478 |
+
|
| 479 |
+
|
| 480 |
+
Saving checkpoint-900...
|
| 481 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.94it/s]
|
| 482 |
+
======================================================================
|
| 483 |
+
UPLOADING CHECKPOINT 900
|
| 484 |
+
======================================================================
|
| 485 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 486 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 487 |
+
|
| 488 |
+
Checkpoint uploaded to:
|
| 489 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-900
|
| 490 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-700
|
| 491 |
+
FineWeb-HQ: 18,045,133 / 100,000,000 tokens
|
| 492 |
+
FineWeb-HQ: 19,053,155 / 100,000,000 tokens
|
| 493 |
+
FineWeb-HQ: 20,053,155 / 100,000,000 tokens
|
| 494 |
+
FineWeb-HQ: 21,053,631 / 100,000,000 tokens
|
| 495 |
+
FineWeb-HQ: 22,061,664 / 100,000,000 tokens
|
| 496 |
+
FineWeb-HQ: 23,061,940 / 100,000,000 tokens
|
| 497 |
+
FineWeb-HQ: 24,062,978 / 100,000,000 tokens
|
| 498 |
+
FineWeb-HQ: 25,063,229 / 100,000,000 tokens
|
| 499 |
+
FineWeb-HQ: 26,073,081 / 100,000,000 tokens
|
| 500 |
+
FineWeb-HQ: 27,073,220 / 100,000,000 tokens
|
| 501 |
+
FineWeb-HQ: 28,073,681 / 100,000,000 tokens
|
| 502 |
+
FineWeb-HQ: 29,073,966 / 100,000,000 tokens
|
| 503 |
+
FineWeb-HQ: 30,074,272 / 100,000,000 tokens
|
| 504 |
+
|
| 505 |
+
Step 1,000/2,289 | Loss 10.1952 | LR 2.039e-05 | 103,234 tok/s | 131,072,000 tokens | 43.69% | 0.35h
|
| 506 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 507 |
+
|
| 508 |
+
|
| 509 |
+
Saving checkpoint-1000...
|
| 510 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.99it/s]
|
| 511 |
+
======================================================================
|
| 512 |
+
UPLOADING CHECKPOINT 1000
|
| 513 |
+
======================================================================
|
| 514 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 515 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 516 |
+
|
| 517 |
+
Checkpoint uploaded to:
|
| 518 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1000
|
| 519 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-800
|
| 520 |
+
FineWeb-HQ: 31,075,196 / 100,000,000 tokens
|
| 521 |
+
FineWeb-HQ: 32,075,679 / 100,000,000 tokens
|
| 522 |
+
FineWeb-HQ: 33,077,041 / 100,000,000 tokens
|
| 523 |
+
FineWeb-HQ: 34,077,283 / 100,000,000 tokens
|
| 524 |
+
FineWeb-HQ: 35,077,442 / 100,000,000 tokens
|
| 525 |
+
FineWeb-HQ: 36,078,144 / 100,000,000 tokens
|
| 526 |
+
FineWeb-HQ: 37,078,751 / 100,000,000 tokens
|
| 527 |
+
FineWeb-HQ: 38,080,143 / 100,000,000 tokens
|
| 528 |
+
FineWeb-HQ: 39,082,841 / 100,000,000 tokens
|
| 529 |
+
FineWeb-HQ: 40,083,517 / 100,000,000 tokens
|
| 530 |
+
FineWeb-HQ: 41,084,347 / 100,000,000 tokens
|
| 531 |
+
FineWeb-HQ: 42,087,132 / 100,000,000 tokens
|
| 532 |
+
FineWeb-HQ: 43,087,302 / 100,000,000 tokens
|
| 533 |
+
FineWeb-HQ: 44,087,920 / 100,000,000 tokens
|
| 534 |
+
|
| 535 |
+
Step 1,100/2,289 | Loss 10.1467 | LR 1.849e-05 | 103,958 tok/s | 144,179,200 tokens | 48.06% | 0.39h
|
| 536 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 537 |
+
|
| 538 |
+
|
| 539 |
+
Saving checkpoint-1100...
|
| 540 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.97it/s]
|
| 541 |
+
======================================================================
|
| 542 |
+
UPLOADING CHECKPOINT 1100
|
| 543 |
+
======================================================================
|
| 544 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 545 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 546 |
+
|
| 547 |
+
Checkpoint uploaded to:
|
| 548 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1100
|
| 549 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-900
|
| 550 |
+
FineWeb-HQ: 45,091,588 / 100,000,000 tokens
|
| 551 |
+
FineWeb-HQ: 46,091,666 / 100,000,000 tokens
|
| 552 |
+
FineWeb-HQ: 47,091,765 / 100,000,000 tokens
|
| 553 |
+
FineWeb-HQ: 48,093,667 / 100,000,000 tokens
|
| 554 |
+
FineWeb-HQ: 49,095,400 / 100,000,000 tokens
|
| 555 |
+
FineWeb-HQ: 50,100,158 / 100,000,000 tokens
|
| 556 |
+
FineWeb-HQ: 51,103,033 / 100,000,000 tokens
|
| 557 |
+
FineWeb-HQ: 52,103,833 / 100,000,000 tokens
|
| 558 |
+
FineWeb-HQ: 53,103,842 / 100,000,000 tokens
|
| 559 |
+
FineWeb-HQ: 54,105,589 / 100,000,000 tokens
|
| 560 |
+
FineWeb-HQ: 55,106,976 / 100,000,000 tokens
|
| 561 |
+
FineWeb-HQ: 56,108,077 / 100,000,000 tokens
|
| 562 |
+
FineWeb-HQ: 57,108,658 / 100,000,000 tokens
|
| 563 |
+
|
| 564 |
+
Step 1,200/2,289 | Loss 10.0994 | LR 1.655e-05 | 103,466 tok/s | 157,286,400 tokens | 52.43% | 0.42h
|
| 565 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 566 |
+
|
| 567 |
+
|
| 568 |
+
Saving checkpoint-1200...
|
| 569 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.94it/s]
|
| 570 |
+
======================================================================
|
| 571 |
+
UPLOADING CHECKPOINT 1200
|
| 572 |
+
======================================================================
|
| 573 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 574 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 575 |
+
|
| 576 |
+
Checkpoint uploaded to:
|
| 577 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1200
|
| 578 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1000
|
| 579 |
+
FineWeb-HQ: 58,108,705 / 100,000,000 tokens
|
| 580 |
+
FineWeb-HQ: 59,109,817 / 100,000,000 tokens
|
| 581 |
+
FineWeb-HQ: 60,115,751 / 100,000,000 tokens
|
| 582 |
+
FineWeb-HQ: 61,116,056 / 100,000,000 tokens
|
| 583 |
+
FineWeb-HQ: 62,116,477 / 100,000,000 tokens
|
| 584 |
+
FineWeb-HQ: 63,116,951 / 100,000,000 tokens
|
| 585 |
+
FineWeb-HQ: 64,118,012 / 100,000,000 tokens
|
| 586 |
+
FineWeb-HQ: 65,122,172 / 100,000,000 tokens
|
| 587 |
+
FineWeb-HQ: 66,122,389 / 100,000,000 tokens
|
| 588 |
+
FineWeb-HQ: 67,124,930 / 100,000,000 tokens
|
| 589 |
+
FineWeb-HQ: 68,124,933 / 100,000,000 tokens
|
| 590 |
+
FineWeb-HQ: 69,126,235 / 100,000,000 tokens
|
| 591 |
+
FineWeb-HQ: 70,127,674 / 100,000,000 tokens
|
| 592 |
+
|
| 593 |
+
Step 1,300/2,289 | Loss 10.0603 | LR 1.461e-05 | 103,354 tok/s | 170,393,600 tokens | 56.80% | 0.46h
|
| 594 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 595 |
+
|
| 596 |
+
|
| 597 |
+
Saving checkpoint-1300...
|
| 598 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.95it/s]
|
| 599 |
+
======================================================================
|
| 600 |
+
UPLOADING CHECKPOINT 1300
|
| 601 |
+
======================================================================
|
| 602 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 603 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 604 |
+
|
| 605 |
+
Checkpoint uploaded to:
|
| 606 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1300
|
| 607 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1100
|
| 608 |
+
FineWeb-HQ: 71,128,320 / 100,000,000 tokens
|
| 609 |
+
FineWeb-HQ: 72,130,508 / 100,000,000 tokens
|
| 610 |
+
FineWeb-HQ: 73,131,425 / 100,000,000 tokens
|
| 611 |
+
FineWeb-HQ: 74,145,259 / 100,000,000 tokens
|
| 612 |
+
FineWeb-HQ: 75,168,512 / 100,000,000 tokens
|
| 613 |
+
FineWeb-HQ: 76,169,236 / 100,000,000 tokens
|
| 614 |
+
FineWeb-HQ: 77,170,751 / 100,000,000 tokens
|
| 615 |
+
FineWeb-HQ: 78,171,712 / 100,000,000 tokens
|
| 616 |
+
FineWeb-HQ: 79,171,903 / 100,000,000 tokens
|
| 617 |
+
FineWeb-HQ: 80,172,653 / 100,000,000 tokens
|
| 618 |
+
FineWeb-HQ: 81,180,767 / 100,000,000 tokens
|
| 619 |
+
FineWeb-HQ: 82,209,091 / 100,000,000 tokens
|
| 620 |
+
FineWeb-HQ: 83,210,028 / 100,000,000 tokens
|
| 621 |
+
|
| 622 |
+
Step 1,400/2,289 | Loss 10.0248 | LR 1.270e-05 | 103,746 tok/s | 183,500,800 tokens | 61.17% | 0.49h
|
| 623 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 624 |
+
|
| 625 |
+
|
| 626 |
+
Saving checkpoint-1400...
|
| 627 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.83it/s]
|
| 628 |
+
======================================================================
|
| 629 |
+
UPLOADING CHECKPOINT 1400
|
| 630 |
+
======================================================================
|
| 631 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 632 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 633 |
+
|
| 634 |
+
Checkpoint uploaded to:
|
| 635 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1400
|
| 636 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1200
|
| 637 |
+
FineWeb-HQ: 84,221,481 / 100,000,000 tokens
|
| 638 |
+
FineWeb-HQ: 85,221,902 / 100,000,000 tokens
|
| 639 |
+
FineWeb-HQ: 86,221,927 / 100,000,000 tokens
|
| 640 |
+
FineWeb-HQ: 87,224,781 / 100,000,000 tokens
|
| 641 |
+
FineWeb-HQ: 88,226,957 / 100,000,000 tokens
|
| 642 |
+
FineWeb-HQ: 89,227,905 / 100,000,000 tokens
|
| 643 |
+
FineWeb-HQ: 90,230,257 / 100,000,000 tokens
|
| 644 |
+
FineWeb-HQ: 91,234,535 / 100,000,000 tokens
|
| 645 |
+
FineWeb-HQ: 92,235,135 / 100,000,000 tokens
|
| 646 |
+
FineWeb-HQ: 93,235,228 / 100,000,000 tokens
|
| 647 |
+
FineWeb-HQ: 94,235,284 / 100,000,000 tokens
|
| 648 |
+
FineWeb-HQ: 95,242,150 / 100,000,000 tokens
|
| 649 |
+
FineWeb-HQ: 96,254,650 / 100,000,000 tokens
|
| 650 |
+
|
| 651 |
+
Step 1,500/2,289 | Loss 9.9967 | LR 1.088e-05 | 103,650 tok/s | 196,608,000 tokens | 65.54% | 0.53h
|
| 652 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 653 |
+
|
| 654 |
+
|
| 655 |
+
Saving checkpoint-1500...
|
| 656 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.86it/s]
|
| 657 |
+
======================================================================
|
| 658 |
+
UPLOADING CHECKPOINT 1500
|
| 659 |
+
======================================================================
|
| 660 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 661 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 662 |
+
|
| 663 |
+
Checkpoint uploaded to:
|
| 664 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1500
|
| 665 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1300
|
| 666 |
+
FineWeb-HQ: 97,258,984 / 100,000,000 tokens
|
| 667 |
+
FineWeb-HQ: 98,259,041 / 100,000,000 tokens
|
| 668 |
+
FineWeb-HQ: 99,263,648 / 100,000,000 tokens
|
| 669 |
+
|
| 670 |
+
FineWeb-HQ complete: 100,000,000 tokens
|
| 671 |
+
Opening SmolLM-Corpus cosmopedia-v2...
|
| 672 |
+
README.md: 100% 7.05k/7.05k [00:00<00:00, 847kB/s]Resolving data files: 100% 104/104 [00:00<00:00, 6458.13it/s]Resolving data files: 100% 104/104 [00:00<00:00, 7784.83it/s]
|
| 673 |
+
======================================================================
|
| 674 |
+
STREAMING SmolLM-Corpus
|
| 675 |
+
======================================================================
|
| 676 |
+
|
| 677 |
+
Target tokens: 100,000,000
|
| 678 |
+
Progress state: 0
|
| 679 |
+
|
| 680 |
+
SmolLM-Corpus: 1,000,389 / 100,000,000 tokens
|
| 681 |
+
SmolLM-Corpus: 2,000,612 / 100,000,000 tokens
|
| 682 |
+
SmolLM-Corpus: 3,000,937 / 100,000,000 tokens
|
| 683 |
+
SmolLM-Corpus: 4,001,355 / 100,000,000 tokens
|
| 684 |
+
SmolLM-Corpus: 5,001,629 / 100,000,000 tokens
|
| 685 |
+
SmolLM-Corpus: 6,002,147 / 100,000,000 tokens
|
| 686 |
+
SmolLM-Corpus: 7,002,160 / 100,000,000 tokens
|
| 687 |
+
SmolLM-Corpus: 8,002,233 / 100,000,000 tokens
|
| 688 |
+
SmolLM-Corpus: 9,002,382 / 100,000,000 tokens
|
| 689 |
+
|
| 690 |
+
Step 1,600/2,289 | Loss 10.0072 | LR 9.168e-06 | 101,065 tok/s | 209,715,200 tokens | 69.91% | 0.57h
|
| 691 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 692 |
+
|
| 693 |
+
|
| 694 |
+
Saving checkpoint-1600...
|
| 695 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.94it/s]
|
| 696 |
+
======================================================================
|
| 697 |
+
UPLOADING CHECKPOINT 1600
|
| 698 |
+
======================================================================
|
| 699 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 700 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 701 |
+
|
| 702 |
+
Checkpoint uploaded to:
|
| 703 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1600
|
| 704 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1400
|
| 705 |
+
SmolLM-Corpus: 10,002,523 / 100,000,000 tokens
|
| 706 |
+
SmolLM-Corpus: 11,002,661 / 100,000,000 tokens
|
| 707 |
+
SmolLM-Corpus: 12,003,098 / 100,000,000 tokens
|
| 708 |
+
SmolLM-Corpus: 13,003,147 / 100,000,000 tokens
|
| 709 |
+
SmolLM-Corpus: 14,004,159 / 100,000,000 tokens
|
| 710 |
+
SmolLM-Corpus: 15,004,183 / 100,000,000 tokens
|
| 711 |
+
SmolLM-Corpus: 16,004,330 / 100,000,000 tokens
|
| 712 |
+
SmolLM-Corpus: 17,005,124 / 100,000,000 tokens
|
| 713 |
+
SmolLM-Corpus: 18,005,586 / 100,000,000 tokens
|
| 714 |
+
SmolLM-Corpus: 19,006,013 / 100,000,000 tokens
|
| 715 |
+
SmolLM-Corpus: 20,006,056 / 100,000,000 tokens
|
| 716 |
+
SmolLM-Corpus: 21,006,417 / 100,000,000 tokens
|
| 717 |
+
SmolLM-Corpus: 22,006,642 / 100,000,000 tokens
|
| 718 |
+
|
| 719 |
+
Step 1,700/2,289 | Loss 9.9950 | LR 7.613e-06 | 104,388 tok/s | 222,822,400 tokens | 74.27% | 0.60h
|
| 720 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 721 |
+
|
| 722 |
+
|
| 723 |
+
Saving checkpoint-1700...
|
| 724 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 11.01it/s]
|
| 725 |
+
======================================================================
|
| 726 |
+
UPLOADING CHECKPOINT 1700
|
| 727 |
+
======================================================================
|
| 728 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 729 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 730 |
+
|
| 731 |
+
Checkpoint uploaded to:
|
| 732 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1700
|
| 733 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1500
|
| 734 |
+
SmolLM-Corpus: 23,007,410 / 100,000,000 tokens
|
| 735 |
+
SmolLM-Corpus: 24,007,513 / 100,000,000 tokens
|
| 736 |
+
SmolLM-Corpus: 25,008,024 / 100,000,000 tokens
|
| 737 |
+
SmolLM-Corpus: 26,008,152 / 100,000,000 tokens
|
| 738 |
+
SmolLM-Corpus: 27,008,820 / 100,000,000 tokens
|
| 739 |
+
SmolLM-Corpus: 28,009,655 / 100,000,000 tokens
|
| 740 |
+
SmolLM-Corpus: 29,009,777 / 100,000,000 tokens
|
| 741 |
+
SmolLM-Corpus: 30,010,160 / 100,000,000 tokens
|
| 742 |
+
SmolLM-Corpus: 31,010,762 / 100,000,000 tokens
|
| 743 |
+
SmolLM-Corpus: 32,010,887 / 100,000,000 tokens
|
| 744 |
+
SmolLM-Corpus: 33,011,339 / 100,000,000 tokens
|
| 745 |
+
SmolLM-Corpus: 34,011,816 / 100,000,000 tokens
|
| 746 |
+
SmolLM-Corpus: 35,012,785 / 100,000,000 tokens
|
| 747 |
+
|
| 748 |
+
Step 1,800/2,289 | Loss 9.9749 | LR 6.242e-06 | 104,425 tok/s | 235,929,600 tokens | 78.64% | 0.63h
|
| 749 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 750 |
+
|
| 751 |
+
|
| 752 |
+
Saving checkpoint-1800...
|
| 753 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 11.00it/s]
|
| 754 |
+
======================================================================
|
| 755 |
+
UPLOADING CHECKPOINT 1800
|
| 756 |
+
======================================================================
|
| 757 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 758 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 759 |
+
|
| 760 |
+
Checkpoint uploaded to:
|
| 761 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1800
|
| 762 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1600
|
| 763 |
+
SmolLM-Corpus: 36,013,511 / 100,000,000 tokens
|
| 764 |
+
SmolLM-Corpus: 37,013,686 / 100,000,000 tokens
|
| 765 |
+
SmolLM-Corpus: 38,015,046 / 100,000,000 tokens
|
| 766 |
+
SmolLM-Corpus: 39,015,520 / 100,000,000 tokens
|
| 767 |
+
SmolLM-Corpus: 40,016,051 / 100,000,000 tokens
|
| 768 |
+
SmolLM-Corpus: 41,016,215 / 100,000,000 tokens
|
| 769 |
+
SmolLM-Corpus: 42,016,528 / 100,000,000 tokens
|
| 770 |
+
SmolLM-Corpus: 43,016,537 / 100,000,000 tokens
|
| 771 |
+
SmolLM-Corpus: 44,016,544 / 100,000,000 tokens
|
| 772 |
+
SmolLM-Corpus: 45,017,221 / 100,000,000 tokens
|
| 773 |
+
SmolLM-Corpus: 46,017,703 / 100,000,000 tokens
|
| 774 |
+
SmolLM-Corpus: 47,017,830 / 100,000,000 tokens
|
| 775 |
+
SmolLM-Corpus: 48,018,530 / 100,000,000 tokens
|
| 776 |
+
SmolLM-Corpus: 49,019,055 / 100,000,000 tokens
|
| 777 |
+
|
| 778 |
+
Step 1,900/2,289 | Loss 9.9581 | LR 5.086e-06 | 104,428 tok/s | 249,036,800 tokens | 83.01% | 0.67h
|
| 779 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 780 |
+
|
| 781 |
+
|
| 782 |
+
Saving checkpoint-1900...
|
| 783 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 11.07it/s]
|
| 784 |
+
======================================================================
|
| 785 |
+
UPLOADING CHECKPOINT 1900
|
| 786 |
+
======================================================================
|
| 787 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 788 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 789 |
+
|
| 790 |
+
Checkpoint uploaded to:
|
| 791 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-1900
|
| 792 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1700
|
| 793 |
+
SmolLM-Corpus: 50,019,088 / 100,000,000 tokens
|
| 794 |
+
SmolLM-Corpus: 51,019,166 / 100,000,000 tokens
|
| 795 |
+
SmolLM-Corpus: 52,019,182 / 100,000,000 tokens
|
| 796 |
+
SmolLM-Corpus: 53,019,341 / 100,000,000 tokens
|
| 797 |
+
SmolLM-Corpus: 54,019,557 / 100,000,000 tokens
|
| 798 |
+
SmolLM-Corpus: 55,019,622 / 100,000,000 tokens
|
| 799 |
+
SmolLM-Corpus: 56,020,576 / 100,000,000 tokens
|
| 800 |
+
SmolLM-Corpus: 57,021,061 / 100,000,000 tokens
|
| 801 |
+
SmolLM-Corpus: 58,021,198 / 100,000,000 tokens
|
| 802 |
+
SmolLM-Corpus: 59,022,144 / 100,000,000 tokens
|
| 803 |
+
SmolLM-Corpus: 60,022,635 / 100,000,000 tokens
|
| 804 |
+
SmolLM-Corpus: 61,022,949 / 100,000,000 tokens
|
| 805 |
+
SmolLM-Corpus: 62,023,318 / 100,000,000 tokens
|
| 806 |
+
|
| 807 |
+
Step 2,000/2,289 | Loss 9.9444 | LR 4.167e-06 | 104,400 tok/s | 262,144,000 tokens | 87.38% | 0.70h
|
| 808 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 809 |
+
|
| 810 |
+
|
| 811 |
+
Saving checkpoint-2000...
|
| 812 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.99it/s]
|
| 813 |
+
======================================================================
|
| 814 |
+
UPLOADING CHECKPOINT 2000
|
| 815 |
+
======================================================================
|
| 816 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 817 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 818 |
+
|
| 819 |
+
Checkpoint uploaded to:
|
| 820 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-2000
|
| 821 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1800
|
| 822 |
+
SmolLM-Corpus: 63,024,246 / 100,000,000 tokens
|
| 823 |
+
SmolLM-Corpus: 64,024,602 / 100,000,000 tokens
|
| 824 |
+
SmolLM-Corpus: 65,025,944 / 100,000,000 tokens
|
| 825 |
+
SmolLM-Corpus: 66,027,471 / 100,000,000 tokens
|
| 826 |
+
SmolLM-Corpus: 67,027,613 / 100,000,000 tokens
|
| 827 |
+
SmolLM-Corpus: 68,028,290 / 100,000,000 tokens
|
| 828 |
+
SmolLM-Corpus: 69,028,776 / 100,000,000 tokens
|
| 829 |
+
SmolLM-Corpus: 70,028,797 / 100,000,000 tokens
|
| 830 |
+
SmolLM-Corpus: 71,030,241 / 100,000,000 tokens
|
| 831 |
+
SmolLM-Corpus: 72,030,477 / 100,000,000 tokens
|
| 832 |
+
SmolLM-Corpus: 73,030,534 / 100,000,000 tokens
|
| 833 |
+
SmolLM-Corpus: 74,030,705 / 100,000,000 tokens
|
| 834 |
+
SmolLM-Corpus: 75,030,996 / 100,000,000 tokens
|
| 835 |
+
|
| 836 |
+
Step 2,100/2,289 | Loss 9.9332 | LR 3.505e-06 | 104,456 tok/s | 275,251,200 tokens | 91.75% | 0.74h
|
| 837 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 838 |
+
|
| 839 |
+
|
| 840 |
+
Saving checkpoint-2100...
|
| 841 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.96it/s]
|
| 842 |
+
======================================================================
|
| 843 |
+
UPLOADING CHECKPOINT 2100
|
| 844 |
+
======================================================================
|
| 845 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 846 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 847 |
+
|
| 848 |
+
Checkpoint uploaded to:
|
| 849 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-2100
|
| 850 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-1900
|
| 851 |
+
SmolLM-Corpus: 76,031,414 / 100,000,000 tokens
|
| 852 |
+
SmolLM-Corpus: 77,031,466 / 100,000,000 tokens
|
| 853 |
+
SmolLM-Corpus: 78,032,243 / 100,000,000 tokens
|
| 854 |
+
SmolLM-Corpus: 79,032,688 / 100,000,000 tokens
|
| 855 |
+
SmolLM-Corpus: 80,032,933 / 100,000,000 tokens
|
| 856 |
+
SmolLM-Corpus: 81,033,099 / 100,000,000 tokens
|
| 857 |
+
SmolLM-Corpus: 82,034,041 / 100,000,000 tokens
|
| 858 |
+
SmolLM-Corpus: 83,034,272 / 100,000,000 tokens
|
| 859 |
+
SmolLM-Corpus: 84,035,283 / 100,000,000 tokens
|
| 860 |
+
SmolLM-Corpus: 85,035,460 / 100,000,000 tokens
|
| 861 |
+
SmolLM-Corpus: 86,035,589 / 100,000,000 tokens
|
| 862 |
+
SmolLM-Corpus: 87,036,259 / 100,000,000 tokens
|
| 863 |
+
SmolLM-Corpus: 88,036,685 / 100,000,000 tokens
|
| 864 |
+
|
| 865 |
+
Step 2,200/2,289 | Loss 9.9239 | LR 3.114e-06 | 104,304 tok/s | 288,358,400 tokens | 96.12% | 0.77h
|
| 866 |
+
VRAM: 1.57 GB allocated / 13.91 GB reserved
|
| 867 |
+
|
| 868 |
+
|
| 869 |
+
Saving checkpoint-2200...
|
| 870 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 10.98it/s]
|
| 871 |
+
======================================================================
|
| 872 |
+
UPLOADING CHECKPOINT 2200
|
| 873 |
+
======================================================================
|
| 874 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 875 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 876 |
+
|
| 877 |
+
Checkpoint uploaded to:
|
| 878 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints/tree/main/checkpoint-2200
|
| 879 |
+
Removing old local checkpoint: /content/applemind-1.0-mini-checkpoints/checkpoint-2000
|
| 880 |
+
SmolLM-Corpus: 89,036,736 / 100,000,000 tokens
|
| 881 |
+
SmolLM-Corpus: 90,037,952 / 100,000,000 tokens
|
| 882 |
+
SmolLM-Corpus: 91,038,162 / 100,000,000 tokens
|
| 883 |
+
SmolLM-Corpus: 92,038,464 / 100,000,000 tokens
|
| 884 |
+
SmolLM-Corpus: 93,038,712 / 100,000,000 tokens
|
| 885 |
+
SmolLM-Corpus: 94,038,967 / 100,000,000 tokens
|
| 886 |
+
SmolLM-Corpus: 95,039,446 / 100,000,000 tokens
|
| 887 |
+
SmolLM-Corpus: 96,039,542 / 100,000,000 tokens
|
| 888 |
+
SmolLM-Corpus: 97,040,355 / 100,000,000 tokens
|
| 889 |
+
SmolLM-Corpus: 98,041,440 / 100,000,000 tokens
|
| 890 |
+
SmolLM-Corpus: 99,041,658 / 100,000,000 tokens
|
| 891 |
+
|
| 892 |
+
SmolLM-Corpus complete: 100,000,000 tokens
|
| 893 |
+
|
| 894 |
+
======================================================================
|
| 895 |
+
DATASET STREAM EXHAUSTED
|
| 896 |
+
======================================================================
|
| 897 |
+
|
| 898 |
+
|
| 899 |
+
Final dataset batch was incomplete.
|
| 900 |
+
Stopping without an incomplete optimizer step.
|
| 901 |
+
|
| 902 |
+
======================================================================
|
| 903 |
+
TRAINING LOOP FINISHED
|
| 904 |
+
======================================================================
|
| 905 |
+
|
| 906 |
+
Completed optimizer steps: 2,288
|
| 907 |
+
Configured optimizer steps: 2,289
|
| 908 |
+
|
| 909 |
+
Dataset progress:
|
| 910 |
+
FineWeb-Edu: 100,000,000 / 100,000,000
|
| 911 |
+
FineWeb-HQ: 100,000,000 / 100,000,000
|
| 912 |
+
SmolLM: 100,000,000 / 100,000,000
|
| 913 |
+
|
| 914 |
+
======================================================================
|
| 915 |
+
PRETRAINING FINISHED
|
| 916 |
+
======================================================================
|
| 917 |
+
|
| 918 |
+
Final steps: 2,288
|
| 919 |
+
Final tokens: 299,892,736
|
| 920 |
+
Target tokens: 300,000,000
|
| 921 |
+
|
| 922 |
+
Actual tokens/parameter: 293.87:1
|
| 923 |
+
|
| 924 |
+
======================================================================
|
| 925 |
+
SAVING FINAL MODEL
|
| 926 |
+
======================================================================
|
| 927 |
+
Writing model shards: 100% 1/1 [00:00<00:00, 21.09it/s]
|
| 928 |
+
======================================================================
|
| 929 |
+
UPLOADING COMPLETE MODEL TO HUGGING FACE
|
| 930 |
+
======================================================================
|
| 931 |
+
|
| 932 |
+
No files have been modified since last commit. Skipping to prevent empty commit.
|
| 933 |
+
WARNING:huggingface_hub._upload_pipeline:No files have been modified since last commit. Skipping to prevent empty commit.
|
| 934 |
+
|
| 935 |
+
FINAL MODEL UPLOAD SUCCESSFUL!
|
| 936 |
+
|
| 937 |
+
Final model:
|
| 938 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini
|
| 939 |
+
|
| 940 |
+
======================================================================
|
| 941 |
+
CHAT TEMPLATE TEST
|
| 942 |
+
======================================================================
|
| 943 |
+
|
| 944 |
+
<|system|>
|
| 945 |
+
You are AppleMind, a helpful AI assistant.
|
| 946 |
+
<|user|>
|
| 947 |
+
Hello!
|
| 948 |
+
<|assistant|>
|
| 949 |
+
|
| 950 |
+
|
| 951 |
+
======================================================================
|
| 952 |
+
GENERATION TEST
|
| 953 |
+
======================================================================
|
| 954 |
+
|
| 955 |
+
Prompt: Once upon a time
|
| 956 |
+
------------------------------------------------------------
|
| 957 |
+
Once upon a time It the several times- nowThis, does to form provide from find another times work not atl The couldWhen on all be way H It lives among times always, worked
|
| 958 |
+
its G during work used after several There and at there
|
| 959 |
+
b known came be very that It thought It betweenIn course does. case other It 5?: or often I at's the: enough could in many
|
| 960 |
+
------------------------------------------------------------
|
| 961 |
+
|
| 962 |
+
Prompt: The little boy
|
| 963 |
+
------------------------------------------------------------
|
| 964 |
+
The little boy's form among. I and H be from� used. still all- G, lives take same always often its find amonged provide- number because: another now? then there among use course not thought case work usel result It between 5 It well atWhen new.: thatThis work on think 3 interestB then It does could do the among Ire use among now does to and many
|
| 965 |
+
------------------------------------------------------------
|
| 966 |
+
|
| 967 |
+
Prompt: In the forest
|
| 968 |
+
------------------------------------------------------------
|
| 969 |
+
In the forest often
|
| 970 |
+
form and times on during severall find, several The then number between: well work take there provide, times among anotherWhen same Ged but lives could the to times its- course same enough and same I used
|
| 971 |
+
to same other not thought There H think� same 2 I body nowe cameb 5- do among's and several? same after- still,This- interest but
|
| 972 |
+
------------------------------------------------------------
|
| 973 |
+
|
| 974 |
+
======================================================================
|
| 975 |
+
APPLE MIND 1.0 MINI COMPLETE
|
| 976 |
+
======================================================================
|
| 977 |
+
|
| 978 |
+
Parameters: 1,020,480
|
| 979 |
+
Tokens: 299,892,736
|
| 980 |
+
Tokens/parameter: 293.87:1
|
| 981 |
+
|
| 982 |
+
Dataset mixture:
|
| 983 |
+
FineWeb-Edu: 100M
|
| 984 |
+
FineWeb-HQ: 100M
|
| 985 |
+
SmolLM: 100M
|
| 986 |
+
|
| 987 |
+
Checkpoint repository:
|
| 988 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini-Checkpoints
|
| 989 |
+
|
| 990 |
+
Final model repository:
|
| 991 |
+
https://huggingface.co/AppleMind-AI/AppleMind-1.0-Mini
|
| 992 |
+
|
| 993 |
+
AppleMind 1.0 Mini complete!
|