Instructions to use tangledgroup/tangled-alpha-0.2-core with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tangledgroup/tangled-alpha-0.2-core with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tangledgroup/tangled-alpha-0.2-core") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tangledgroup/tangled-alpha-0.2-core", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use tangledgroup/tangled-alpha-0.2-core with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tangledgroup/tangled-alpha-0.2-core" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tangledgroup/tangled-alpha-0.2-core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tangledgroup/tangled-alpha-0.2-core
- SGLang
How to use tangledgroup/tangled-alpha-0.2-core 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 "tangledgroup/tangled-alpha-0.2-core" \ --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": "tangledgroup/tangled-alpha-0.2-core", "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 "tangledgroup/tangled-alpha-0.2-core" \ --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": "tangledgroup/tangled-alpha-0.2-core", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use tangledgroup/tangled-alpha-0.2-core with Docker Model Runner:
docker model run hf.co/tangledgroup/tangled-alpha-0.2-core
| roles_map = { | |
| 'system': 'system', | |
| 'user': 'user', | |
| 'human': 'user', | |
| 'assistant': 'assistant', | |
| 'gpt': 'assistant', | |
| 'AI': 'assistant', | |
| } | |
| R1_SYSTEM_PROMPT = '''\ | |
| You are an AI assistant. | |
| Your primary directive is to provide well-reasoned, structured, and extensively detailed responses. | |
| Formatting Requirements: | |
| - Always structure your replies using: <think>{reasoning}</think>{answer} | |
| - The <think></think> block should contain at least six reasoning steps when applicable. | |
| - If the answer requires minimal thought, the <think></think> block may be left empty. | |
| - The user does not see the <think></think> section. Any information critical to the response must be included in the answer. | |
| - If you notice that you have engaged in circular reasoning or repetition, immediately terminate {reasoning} with a </think> and proceed to the {answer} | |
| Response Guidelines: | |
| - Detailed and Structured: Use rich Markdown formatting for clarity and readability. | |
| - Scientific and Logical Approach: Your explanations should reflect the depth and precision of the greatest scientific minds. | |
| - Prioritize Reasoning: Always reason through the problem first, unless the answer is trivial. | |
| - Concise yet Complete: Ensure responses are informative, yet to the point without unnecessary elaboration. | |
| - Maintain a professional, intelligent, and analytical tone in all interactions.''' | |
| core_reason_datasets = [ | |
| # | |
| # math reason | |
| # | |
| # 8.43 GB, 450,258 | |
| *[ | |
| {'kind': 'instruct', 'path': 'open-r1/OpenR1-Math-220k', 'data_dir': 'data', 'split': f'train[{i}%:{i + 10}%]', 'field': 'messages', 'transform': lambda msgs: [ | |
| {'role': roles_map[m['from']], 'content': m['value']} | |
| for m in msgs | |
| ]} | |
| for i in range(0, 100, 10) | |
| ], | |
| # | |
| # general reason | |
| # | |
| # 3.55 GB, 227,914 | |
| *[ | |
| {'kind': 'instruct', 'path': 'open-thoughts/OpenThoughts-114k', 'data_dir': 'data', 'split': f'train[{i}%:{i + 10}%]', 'transform': lambda r: [ | |
| {'role': 'system', 'content': r['system']} | |
| ] + [ | |
| {'role': roles_map[m['from']], 'content': m['value']} | |
| for m in r['conversations'] | |
| ]} | |
| for i in range(0, 100, 10) | |
| ], | |
| # 3.98 GB, 814,334 | |
| # 300k | |
| *[ | |
| {'kind': 'instruct', 'path': 'cognitivecomputations/dolphin-r1', 'data_files': 'dolphin-r1-reasoning-deepseek.jsonl', 'split': f'train[{i}%:{i + 10}%]', 'transform': lambda r: [ | |
| {'role': 'system', 'content': R1_SYSTEM_PROMPT}, | |
| *r['messages'], | |
| {'role': 'assistant', 'content': '<think>\n' + (r.get('reasoning') or '') + '\n</think>\n' + (r.get('answer') or '')}, | |
| ]} | |
| for i in range(0, 100, 10) | |
| ], | |
| # 300k | |
| *[ | |
| {'kind': 'instruct', 'path': 'cognitivecomputations/dolphin-r1', 'data_files': 'dolphin-r1-reasoning-flash.jsonl', 'split': f'train[{i}%:{i + 10}%]', 'transform': lambda r: [ | |
| {'role': 'system', 'content': R1_SYSTEM_PROMPT}, | |
| *r['messages'], | |
| {'role': 'assistant', 'content': '<think>\n' + (r.get('reasoning') or '') + '\n</think>\n' + (r.get('answer') or '')}, | |
| ]} | |
| for i in range(0, 100, 10) | |
| ], | |
| # 21.1 MB, 1,000 | |
| {'kind': 'instruct', 'path': 'simplescaling/s1K-1.1', 'split': 'train', 'transform': lambda r: [ | |
| {'role': 'user', 'content': r.get('question') or ''}, | |
| {'role': 'assistant', 'content': '<think>\n' + (r.get('deepseek_thinking_trajectory') or '') + '\n</think>\n' + (r.get('solution') or '')}, | |
| ]} | |
| ] | |