yujiepan / gemma-tiny-random

huggingface.co
Total runs: 511
24-hour runs: 0
7-day runs: 168
30-day runs: 400
Model's Last Updated: April 19 2024
text-generation

Introduction of gemma-tiny-random

Model Details of gemma-tiny-random

This model is randomly initialized, using the config from [ https://huggingface.co/google/gemma-7b-it] but with smaller size. Note the model is in float16.

Codes:

from transformers import pipeline
from huggingface_hub import create_repo, upload_folder
import torch
import transformers
import os

model_id = 'google/gemma-7b-it'
save_path = '/tmp/yujiepan/gemma-tiny-random'
repo_id = 'yujiepan/gemma-tiny-random'

config = transformers.AutoConfig.from_pretrained(model_id)
config.hidden_size = 8
config.head_dim = 2
config.intermediate_size = 16
config.num_attention_heads = 4
config.num_hidden_layers = 2
config.num_key_value_heads = 2
print(config)

tokenizer = transformers.AutoTokenizer.from_pretrained(model_id)
tokenizer.save_pretrained(save_path)

model = transformers.AutoModelForCausalLM.from_config(config, torch_dtype=torch.float16)
model = model.half()

pipe = pipeline('text-generation', model=model, tokenizer=tokenizer, do_sample=False, device='cuda')
print(pipe('Hello World!'))

model.save_pretrained(save_path)

# ovmodel = OVModelForCausalLM.from_pretrained(save_path, export=True)
# ovmodel = ovmodel.half()
# ovmodel.save_pretrained(save_path)

os.system(f'ls -alh {save_path}')
create_repo(repo_id, exist_ok=True)
upload_folder(repo_id=repo_id, folder_path=save_path)

Runs of yujiepan gemma-tiny-random on huggingface.co

511
Total runs
0
24-hour runs
83
3-day runs
168
7-day runs
400
30-day runs

More Information About gemma-tiny-random huggingface.co Model

gemma-tiny-random huggingface.co

gemma-tiny-random huggingface.co is an AI model on huggingface.co that provides gemma-tiny-random's model effect (), which can be used instantly with this yujiepan gemma-tiny-random model. huggingface.co supports a free trial of the gemma-tiny-random model, and also provides paid use of the gemma-tiny-random. Support call gemma-tiny-random model through api, including Node.js, Python, http.

gemma-tiny-random huggingface.co Url

https://huggingface.co/yujiepan/gemma-tiny-random

yujiepan gemma-tiny-random online free

gemma-tiny-random huggingface.co is an online trial and call api platform, which integrates gemma-tiny-random's modeling effects, including api services, and provides a free online trial of gemma-tiny-random, you can try gemma-tiny-random online for free by clicking the link below.

yujiepan gemma-tiny-random online free url in huggingface.co:

https://huggingface.co/yujiepan/gemma-tiny-random

gemma-tiny-random install

gemma-tiny-random is an open source model from GitHub that offers a free installation service, and any user can find gemma-tiny-random on GitHub to install. At the same time, huggingface.co provides the effect of gemma-tiny-random install, users can directly use gemma-tiny-random installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

gemma-tiny-random install url in huggingface.co:

https://huggingface.co/yujiepan/gemma-tiny-random

Url of gemma-tiny-random

gemma-tiny-random huggingface.co Url

Provider of gemma-tiny-random huggingface.co

yujiepan
ORGANIZATIONS

Other API from yujiepan