Text Generation
Transformers
PyTorch
English
crystalcoder
llm
code
custom_code
Eval Results (legacy)
Instructions to use IFM/CrystalChat with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use IFM/CrystalChat with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="IFM/CrystalChat", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("IFM/CrystalChat", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use IFM/CrystalChat with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "IFM/CrystalChat" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "IFM/CrystalChat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/IFM/CrystalChat
- SGLang
How to use IFM/CrystalChat 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 "IFM/CrystalChat" \ --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": "IFM/CrystalChat", "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 "IFM/CrystalChat" \ --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": "IFM/CrystalChat", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use IFM/CrystalChat with Docker Model Runner:
docker model run hf.co/IFM/CrystalChat
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,13 +5,28 @@ language:
|
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
library_name: transformers
|
| 7 |
widget:
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
tags:
|
| 13 |
- llm
|
| 14 |
- code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# CrystalChat
|
|
@@ -186,4 +201,4 @@ CrystalChat has not been aligned to human preferences for safety within the RLHF
|
|
| 186 |
archivePrefix={arXiv},
|
| 187 |
primaryClass={cs.CL}
|
| 188 |
}
|
| 189 |
-
```
|
|
|
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
library_name: transformers
|
| 7 |
widget:
|
| 8 |
+
- example_title: Write python function and explain
|
| 9 |
+
text: >-
|
| 10 |
+
<s> <|sys_start|> You are an AI assistant. You will be given a task. You
|
| 11 |
+
must generate a detailed and long answer. <|sys_end|> <|im_start|> Write a
|
| 12 |
+
python function that takes a list of integers and returns the squared sum of
|
| 13 |
+
the list. <|im_end|>
|
| 14 |
+
output:
|
| 15 |
+
text: "\n````\nHere's a Python function named `squared_sum_list` that takes a list of integers as input and returns the squared sum of the list:\n\n```python\ndef squared_sum_list(lst):\n\treturn sum([num ** 2 for num in lst])\n```\nThe function `squared_sum_list` uses a list comprehension to iterate over each number in the input list `lst` and calculate its square. Then, it uses the `sum` function to accumulate all the squared numbers in a single value - the squared sum of the list.\n\nFor example:\n\n```python\nnumbers = [1, 2, 3, 4, 5]\nprint(squared_sum_list(numbers)) # Outputs: 55\n```\n\nIn the above code, the list `[1, 2, 3, 4, 5]` is passed as an argument to the `squared_sum_list` function. The function calculates the sum of the squares of the elements in the list, which is `1 + 4 + 9 + 16 + 25 = 55`. The function then returns this result, which is printed to the console."
|
| 16 |
tags:
|
| 17 |
- llm
|
| 18 |
- code
|
| 19 |
+
datasets:
|
| 20 |
+
- openaccess-ai-collective/oasst1-guanaco-extended-sharegpt
|
| 21 |
+
- Open-Orca/SlimOrca
|
| 22 |
+
- AtAndDev/ShareGPT-Vicuna-v3-cleaned-unfiltered
|
| 23 |
+
- WizardLM/WizardLM_evol_instruct_V2_196k
|
| 24 |
+
- winglian/chatlogs-en-cleaned
|
| 25 |
+
- HuggingFaceH4/CodeAlpaca_20K
|
| 26 |
+
- theblackcat102/evol-codealpaca-v1
|
| 27 |
+
- nickrosh/Evol-Instruct-Code-80k-v1
|
| 28 |
+
- open-phi/textbooks
|
| 29 |
+
- open-phi/programming_books_llama
|
| 30 |
---
|
| 31 |
|
| 32 |
# CrystalChat
|
|
|
|
| 201 |
archivePrefix={arXiv},
|
| 202 |
primaryClass={cs.CL}
|
| 203 |
}
|
| 204 |
+
```
|