How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="darkps/ice-AI")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("darkps/ice-AI")
model = AutoModelForCausalLM.from_pretrained("darkps/ice-AI", 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]:]))
Quick Links

ICE AI

ICE 0001

The "ice" model is a very robust, medium-sized model for human-like conversations, designed for quick chats and small code snippets.

The ice model was released with massive equations:

Major Improvements

  • It was trained on 5.47 billion Codex conversations.
  • It was also trained on more than 30 billion human conversations to better adapt to different Arabic dialects and multiple languages.

Key Specifications

  • Model Family: ICE AI
  • ID: ice-0001
  • Model Size: 8B Parameters
  • Context Length: 32,768 tokens
  • Format: Transformers
  • Inference Support: CPU / GPU
  • Primary Focus: Human-like conversational AI

Training

Trained on approximately 36 trillion tokens across 119 languages and dialects, with a strong focus on multiple Arabic dialects, international languages, and programming/code data.


Recommended Usage

ICE AI performs best when used for:

  • General conversations
  • multilingual chat
  • Software development
  • Code generation
  • Code debugging
  • Technical questions
  • Scripting and automation
  • Local offline AI deployment

⚠️ Notes

  • Designed for conversational and coding tasks.
  • Output quality may vary depending on the quantization level and hardware.
  • Best results are achieved with structured prompts.
  • Larger context sizes may require substantial RAM/VRAM.

About Dark

DarkPs is an AI organization owned by FanuonAI, developing and maintaining open-source AI models such as DarkIT, ICE AI, and DarkCoder.

Platform: https://dark.ps

Downloads last month
914
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 1 Ask for provider support

Model tree for darkps/ice-AI

Quantizations
2 models