Text Generation
Transformers
PyTorch
English
gpt_bigcode
langchain
python
yolov8
vertexai
text-generation-inference
Instructions to use iterateai/Interplay-AppCoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use iterateai/Interplay-AppCoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="iterateai/Interplay-AppCoder")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("iterateai/Interplay-AppCoder") model = AutoModelForCausalLM.from_pretrained("iterateai/Interplay-AppCoder") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use iterateai/Interplay-AppCoder with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "iterateai/Interplay-AppCoder" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "iterateai/Interplay-AppCoder", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/iterateai/Interplay-AppCoder
- SGLang
How to use iterateai/Interplay-AppCoder 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 "iterateai/Interplay-AppCoder" \ --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": "iterateai/Interplay-AppCoder", "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 "iterateai/Interplay-AppCoder" \ --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": "iterateai/Interplay-AppCoder", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use iterateai/Interplay-AppCoder with Docker Model Runner:
docker model run hf.co/iterateai/Interplay-AppCoder
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,6 +8,8 @@ tags:
|
|
| 8 |
---
|
| 9 |
# Interplay-AppCoder a CodeGeneration LLM
|
| 10 |
**Iterate’s new top-performing Interplay-AppCoder LLM scores 2.9 on usefulness and 2.7 on functionality on the ICE Benchmark Test**
|
|
|
|
|
|
|
| 11 |
The world of LLMs is growing rapidly as Several new LLMs and finetunes are released daily by the open-source community, startups, and enterprises, as new models are invented to perform various novel tasks.
|
| 12 |
|
| 13 |
One of our Iterate.ai R&D Projects has been to experiment with several LLMs, then train a code generation LLM on the latest generative AI frameworks and libraries. Our goal was to generate working and updated code for generative AI projects that we build alongside our enterprise clients.
|
|
@@ -19,49 +21,22 @@ The result is Interplay-AppCoder LLM, a brand new high performing code generatio
|
|
| 19 |
|
| 20 |
|
| 21 |
## Model Details
|
| 22 |
-
The base model which Interplay-Appcoder is based on: Wizardcoder-15B-v1.0
|
| 23 |
-
|
| 24 |
-
|
| 25 |
|
| 26 |
|
| 27 |
|
| 28 |
-
- **Developed by:** [
|
| 29 |
-
- **
|
| 30 |
-
- **
|
| 31 |
-
- **Model type:** [More Information Needed]
|
| 32 |
-
- **Language(s) (NLP):** [More Information Needed]
|
| 33 |
-
- **License:** [More Information Needed]
|
| 34 |
-
- **Finetuned from model [optional]:** [More Information Needed]
|
| 35 |
|
| 36 |
### Model Sources [optional]
|
| 37 |
|
| 38 |
<!-- Provide the basic links for the model. -->
|
| 39 |
|
| 40 |
-
- **Repository:** [More Information Needed]
|
| 41 |
-
- **Paper [optional]:** [More Information Needed]
|
| 42 |
-
- **Demo [optional]:** [More Information Needed]
|
| 43 |
-
|
| 44 |
-
## Uses
|
| 45 |
-
|
| 46 |
-
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 47 |
-
|
| 48 |
-
### Direct Use
|
| 49 |
|
| 50 |
-
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 51 |
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
### Downstream Use [optional]
|
| 55 |
|
| 56 |
-
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 57 |
-
|
| 58 |
-
[More Information Needed]
|
| 59 |
|
| 60 |
-
### Out-of-Scope Use
|
| 61 |
-
|
| 62 |
-
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 63 |
-
|
| 64 |
-
[More Information Needed]
|
| 65 |
|
| 66 |
## Bias, Risks, and Limitations
|
| 67 |
|
|
|
|
| 8 |
---
|
| 9 |
# Interplay-AppCoder a CodeGeneration LLM
|
| 10 |
**Iterate’s new top-performing Interplay-AppCoder LLM scores 2.9 on usefulness and 2.7 on functionality on the ICE Benchmark Test**
|
| 11 |
+
|
| 12 |
+
|
| 13 |
The world of LLMs is growing rapidly as Several new LLMs and finetunes are released daily by the open-source community, startups, and enterprises, as new models are invented to perform various novel tasks.
|
| 14 |
|
| 15 |
One of our Iterate.ai R&D Projects has been to experiment with several LLMs, then train a code generation LLM on the latest generative AI frameworks and libraries. Our goal was to generate working and updated code for generative AI projects that we build alongside our enterprise clients.
|
|
|
|
| 21 |
|
| 22 |
|
| 23 |
## Model Details
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
|
| 26 |
|
| 27 |
+
- **Developed by:** [Iterate.ai]
|
| 28 |
+
- **Language(s) (NLP):** [Python,Langchain,yolov8]
|
| 29 |
+
- **Finetuned from model :** [Wizardcoder-15B-v1.0]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
### Model Sources [optional]
|
| 32 |
|
| 33 |
<!-- Provide the basic links for the model. -->
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
|
|
|
| 36 |
|
| 37 |
+
- **Demo [optional]:** [https://appcoder.interplay.iterate.ai/]
|
|
|
|
|
|
|
| 38 |
|
|
|
|
|
|
|
|
|
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
|
| 41 |
## Bias, Risks, and Limitations
|
| 42 |
|