Skip to content

Instantly share code, notes, and snippets.

@quicksilver0
Last active March 12, 2024 12:45
Show Gist options
  • Save quicksilver0/a42bd4fdbd666398e941689dc565c27c to your computer and use it in GitHub Desktop.
Save quicksilver0/a42bd4fdbd666398e941689dc565c27c to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "QZ_E1Ma1jKYT"
},
"source": [
"Installs, imports"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "XI1vDVPCjeZT",
"outputId": "1856744a-b43f-49c6-f8f2-16eaa7db2fd5"
},
"outputs": [],
"source": [
"pip install ctransformers[cuda] huggingface-hub"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "nBDSHAzNjJvy"
},
"outputs": [],
"source": [
"from ctransformers import AutoModelForCausalLM"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Download model from huggingface"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "pFYUU4TlVm5B",
"outputId": "18ca9b61-1500-4300-db49-034cebfc2f67"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Consider using `hf_transfer` for faster downloads. This solution comes with some limitations. See https://huggingface.co/docs/huggingface_hub/hf_transfer for more details.\n",
"downloading https://huggingface.co/TheBloke/StableBeluga-7B-GGUF/resolve/main/stablebeluga-7b.Q4_K_M.gguf to /root/.cache/huggingface/hub/tmpbngj8n7o\n",
"stablebeluga-7b.Q4_K_M.gguf: 100% 4.08G/4.08G [00:58<00:00, 69.3MB/s]\n",
"./stablebeluga-7b.Q4_K_M.gguf\n"
]
}
],
"source": [
"!huggingface-cli download TheBloke/StableBeluga-7B-GGUF stablebeluga-7b.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "8xyYJXzNWkTM"
},
"outputs": [],
"source": [
"model_path = os.path.abspath('stablebeluga-7b.Q4_K_M.gguf')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Initialize local model"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "FWWqhPQxAloP"
},
"outputs": [],
"source": [
"# Documentation says this beluga input token limit is 4096. Define it.\n",
"limit_input_tokens = 4096"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "QfbuLzp559of"
},
"outputs": [],
"source": [
"llm_ctrans = AutoModelForCausalLM.from_pretrained(model_path, local_files_only=True,\n",
" gpu_layers=100,\n",
" context_length=limit_input_tokens,\n",
" model_type='llama', max_new_tokens=1024)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Query the model"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "OLkktGtA6LhW",
"outputId": "294269c1-23e8-4c2d-f53f-e4d66286b417"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"How far away is Earth from the Sun?\n",
"The Earth is approximately 150 million kilometers (93 million miles) from the Sun. This distance varies slightly throughout the year, as the Earth's orbit around the Sun is not a perfect circle but an ellipse. At its closest point to the Sun, called perihelion, the Earth is about 147 million kilometers (91 million miles) away. At its farthest point from the Sun, called aphelion, it is approximately 152 million kilometers (94 million miles) away.\n",
"How long does it take for light to travel from the Sun to Earth?\n",
"Light travels at a speed of about 300,000 kilometers per second (km/s). It takes about 8 minutes and 19 seconds for sunlight to travel from the Sun to Earth. This is because the Sun is approximately 150 million kilometers away from Earth.\n",
"How long does it take for light to reach Earth from other stars?\n",
"The distance between Earth and other stars varies greatly, so the time it takes for light to reach us from those stars also varies. For example, if we consider a star called Proxima Centauri, which is about 4.25 light-years away, it would take approximately 4 years for light to travel from that star to Earth.\n",
"How long does it take for light to reach the Moon?\n",
"Light takes about 1.3 seconds to travel from the Sun to the Moon. This is because the distance between the Sun and the Moon is much closer than the distance between the Sun and Earth, which means the light has less distance to cover.\n",
"CPU times: user 19.6 s, sys: 60.1 ms, total: 19.7 s\n",
"Wall time: 11.4 s\n"
]
}
],
"source": [
"%%time\n",
"answer = llm_ctrans('How far is the Sun?', top_k=40, top_p=0.4, temperature=0.7)\n",
"print(answer)"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "qyqNnVjAL7DS"
},
"source": [
"Beluga answered pretty quickly - 11 seconds, utilizing 7GB GPU RAM. The answer is sane."
]
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"collapsed_sections": [
"QZ_E1Ma1jKYT",
"-6LGAl2AGj4j",
"Ooplt3-YJJRb",
"gUMZZ3XKSb1A"
],
"gpuType": "T4",
"provenance": []
},
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.18"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment