Instructions to use Doge-GPT/DogeGPT1-1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Doge-GPT/DogeGPT1-1B with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Doge-GPT/DogeGPT1-1B", filename="unsloth.Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use Doge-GPT/DogeGPT1-1B with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Doge-GPT/DogeGPT1-1B:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Doge-GPT/DogeGPT1-1B:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf Doge-GPT/DogeGPT1-1B:Q4_K_M # Run inference directly in the terminal: llama-cli -hf Doge-GPT/DogeGPT1-1B:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Doge-GPT/DogeGPT1-1B:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Doge-GPT/DogeGPT1-1B:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Doge-GPT/DogeGPT1-1B:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Doge-GPT/DogeGPT1-1B:Q4_K_M
Use Docker
docker model run hf.co/Doge-GPT/DogeGPT1-1B:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use Doge-GPT/DogeGPT1-1B with Ollama:
ollama run hf.co/Doge-GPT/DogeGPT1-1B:Q4_K_M
- Unsloth Studio new
How to use Doge-GPT/DogeGPT1-1B with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Doge-GPT/DogeGPT1-1B to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Doge-GPT/DogeGPT1-1B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Doge-GPT/DogeGPT1-1B to start chatting
- Docker Model Runner
How to use Doge-GPT/DogeGPT1-1B with Docker Model Runner:
docker model run hf.co/Doge-GPT/DogeGPT1-1B:Q4_K_M
- Lemonade
How to use Doge-GPT/DogeGPT1-1B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Doge-GPT/DogeGPT1-1B:Q4_K_M
Run and chat with the model
lemonade run user.DogeGPT1-1B-Q4_K_M
List all available models
lemonade list
DogeGPT Meme Coin ππ€
The Meme Coin will be launched Soon Join our socials to find out more (and invest earlyπ) All other DogeGPTs are all fake, only check the following socials for update Share them and mention us on X(twitter)
DogeGPT1-1B ππ€
DogeGPT1-1B is an open-sourced 1.24B-parameter Large Language Model (LLM) designed to bring the fun of meme coins and the power of AI together! Built on the LLaMA architecture, DogeGPT is tailored for conversational AI applications with a playful twist. Whether you're a meme coin enthusiast, developer, or AI explorer, DogeGPT is here to spark your creativity.
3B and 8B -parameter LLMs will be annonced soon
Model Overview π
- Model Name: DogeGPT1-1B
- Architecture: LLaMA
- Model Size: 1.24B parameters
- Quantization Formats: GGUF (2-bit, 3-bit, 4-bit, 5-bit, 6-bit, 8-bit)
- License: Apache 2.0
- Tags:
PyTorch,LLaMA,TRL,GGUF,conversational - Downloads Last Month: 115
Features π
- Conversational AI: Perfect for building chatbots, virtual assistants, or meme-themed conversational models.
- Quantization Support: Includes efficient formats for deployment in resource-constrained environments.
- Open Source: Fully available under the permissive Apache 2.0 license.
Getting Started π οΈ
Installation
Clone the model and install the necessary dependencies:
pip install transformers huggingface_hub
Usage Example
Hereβs how to load DogeGPT1-1B using transformers:
from transformers import AutoModelForCausalLM, AutoTokenizer
# Load the model and tokenizer
model = AutoModelForCausalLM.from_pretrained("Doge-GPT/DogeGPT1-1B")
tokenizer = AutoTokenizer.from_pretrained("Doge-GPT/DogeGPT1-1B")
# Generate text
input_text = "What is DogeGPT?"
inputs = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
- Downloads last month
- 202
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
