Instructions to use huggingtweets/Question with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use huggingtweets/Question with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="huggingtweets/Question")# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("huggingtweets/Question") model = AutoModelForMultimodalLM.from_pretrained("huggingtweets/Question") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use huggingtweets/Question with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "huggingtweets/Question" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "huggingtweets/Question", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/huggingtweets/Question
- SGLang
How to use huggingtweets/Question with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "huggingtweets/Question" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "huggingtweets/Question", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "huggingtweets/Question" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "huggingtweets/Question", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use huggingtweets/Question with Docker Model Runner:
docker model run hf.co/huggingtweets/Question
| language: en | |
| thumbnail: https://github.com/borisdayma/huggingtweets/blob/master/img/logo.png?raw=true | |
| tags: | |
| - huggingtweets | |
| widget: | |
| - text: "My dream is" | |
| <link rel="stylesheet" href="https://unpkg.com/@tailwindcss/typography@0.2.x/dist/typography.min.css"> | |
| <style> | |
| @media (prefers-color-scheme: dark) { | |
| .prose { color: #E2E8F0 !important; } | |
| .prose h2, .prose h3, .prose a, .prose thead { color: #F7FAFC !important; } | |
| } | |
| </style> | |
| <section class='prose'> | |
| <div> | |
| <div style="width: 132px; height:132px; border-radius: 50%; background-size: cover; background-image: url('https://pbs.twimg.com/profile_images/1282836681914085378/PGX9pn9g_400x400.jpg')"> | |
| </div> | |
| <div style="margin-top: 8px; font-size: 19px; font-weight: 800">Milanote 🤖 AI Bot </div> | |
| <div style="font-size: 15px; color: #657786">@milanoteapp bot</div> | |
| </div> | |
| I was made with [huggingtweets](https://github.com/borisdayma/huggingtweets). | |
| Create your own bot based on your favorite user with [the demo](https://colab.research.google.com/github/borisdayma/huggingtweets/blob/master/huggingtweets-demo.ipynb)! | |
| ## How does it work? | |
| The model uses the following pipeline. | |
|  | |
| To understand how the model was developed, check the [W&B report](https://app.wandb.ai/wandb/huggingtweets/reports/HuggingTweets-Train-a-model-to-generate-tweets--VmlldzoxMTY5MjI). | |
| ## Training data | |
| The model was trained on [@milanoteapp's tweets](https://twitter.com/milanoteapp). | |
| <table style='border-width:0'> | |
| <thead style='border-width:0'> | |
| <tr style='border-width:0 0 1px 0; border-color: #CBD5E0'> | |
| <th style='border-width:0'>Data</th> | |
| <th style='border-width:0'>Quantity</th> | |
| </tr> | |
| </thead> | |
| <tbody style='border-width:0'> | |
| <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> | |
| <td style='border-width:0'>Tweets downloaded</td> | |
| <td style='border-width:0'>831</td> | |
| </tr> | |
| <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> | |
| <td style='border-width:0'>Retweets</td> | |
| <td style='border-width:0'>63</td> | |
| </tr> | |
| <tr style='border-width:0 0 1px 0; border-color: #E2E8F0'> | |
| <td style='border-width:0'>Short tweets</td> | |
| <td style='border-width:0'>28</td> | |
| </tr> | |
| <tr style='border-width:0'> | |
| <td style='border-width:0'>Tweets kept</td> | |
| <td style='border-width:0'>740</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| [Explore the data](https://wandb.ai/wandb/huggingtweets/runs/15katy2a/artifacts), which is tracked with [W&B artifacts](https://docs.wandb.com/artifacts) at every step of the pipeline. | |
| ## Training procedure | |
| The model is based on a pre-trained [GPT-2](https://huggingface.co/gpt2) which is fine-tuned on @milanoteapp's tweets. | |
| Hyperparameters and metrics are recorded in the [W&B training run](https://wandb.ai/wandb/huggingtweets/runs/1y624qmh) for full transparency and reproducibility. | |
| At the end of training, [the final model](https://wandb.ai/wandb/huggingtweets/runs/1y624qmh/artifacts) is logged and versioned. | |
| ## Intended uses & limitations | |
| ### How to use | |
| You can use this model directly with a pipeline for text generation: | |
| <pre><code><span style="color:#03A9F4">from</span> transformers <span style="color:#03A9F4">import</span> pipeline | |
| generator = pipeline(<span style="color:#FF9800">'text-generation'</span>, | |
| model=<span style="color:#FF9800">'huggingtweets/milanoteapp'</span>) | |
| generator(<span style="color:#FF9800">"My dream is"</span>, num_return_sequences=<span style="color:#8BC34A">5</span>)</code></pre> | |
| ### Limitations and bias | |
| The model suffers from [the same limitations and bias as GPT-2](https://huggingface.co/gpt2#limitations-and-bias). | |
| In addition, the data present in the user's tweets further affects the text generated by the model. | |
| ## About | |
| *Built by Boris Dayma* | |
| </section> | |
| [](https://twitter.com/intent/follow?screen_name=borisdayma) | |
| <section class='prose'> | |
| For more details, visit the project repository. | |
| </section> | |
| [](https://github.com/borisdayma/huggingtweets) | |
| <!--- random size file --> |