Text Generation
Transformers
Safetensors
MLX
llama
conversational
Inference Endpoints
text-generation-inference
prem-1B-chat-MLX / README.md
ucalyptus's picture
Upload folder using huggingface_hub
0564e7a verified
metadata
license: apache-2.0
library_name: transformers
tags:
  - mlx
datasets:
  - cerebras/SlimPajama-627B
  - HuggingFaceH4/ultrachat_200k
  - hkust-nlp/deita-10k-v0
  - Open-Orca/SlimOrca-Dedup
  - cognitivecomputations/WizardLM_evol_instruct_V2_196k_unfiltered_merged_split
  - HuggingFaceH4/capybara
  - meta-math/MetaMathQA
  - argilla/ultrafeedback-binarized-preferences-cleaned
  - Intel/orca_dpo_pairs
  - alexredna/oasst2_dpo_pairs
pipeline_tag: text-generation

ucalyptus/prem-1B-chat-MLX

This model was converted to MLX format from premai-io/prem-1B-chat. Refer to the original model card for more details on the model.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("ucalyptus/prem-1B-chat-MLX")
response = generate(model, tokenizer, prompt="hello", verbose=True)