You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Jahnviy/mybuddy10

This repo contains the full merged model for offline app handoff.

What is in this repo

  • The merged full model at the repo root
  • Tokenizer files at the repo root
  • The exact chat UI script copied from:
    • /workspace/chat_tutu_continued_apr_ui.py
  • Optional adapter artifact
  • Optional training metadata

Main artifact for the app developer

Use the repo root as the model folder.

Included exact local chat script

  • chat_tutu_continued_apr_ui.py

Load directly from Hugging Face

from transformers import AutoTokenizer, AutoModelForCausalLM

repo_id = "Jahnviy/mybuddy10"

tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(repo_id, trust_remote_code=True)

Load from a local offline copy

from transformers import AutoTokenizer, AutoModelForCausalLM

local_path = "/path/to/local/mybuddy10"

tokenizer = AutoTokenizer.from_pretrained(local_path, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(local_path, trust_remote_code=True)
Downloads last month
4
Safetensors
Model size
3B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support