Weak-Driven-Learning
8
3
license:mit
by
chhao
Language Model
OTHER
New
8 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Quickstartbash
# Clone the repository
git clone https://github.com/chenzehao82/Weak-Driven-Learning.git
cd Weak-Driven-Learning
# Install dependencies
pip install -r requirements.txtDeploymentbashvllm
# Install vLLM
pip install 'vllm>=0.11.0'
# Launch OpenAI-compatible API server
vllm serve chhao/Weak-Driven-Learning --port 8000 --tensor-parallel-size 2Install vLLMpythonopenai
from openai import OpenAI
client = OpenAI(
base_url='http://localhost:8000/v1',
api_key="EMPTY"
)
messages = [{'role': 'user', 'content': 'Solve: 2x + 3 = 11'}]
completion = client.chat.completions.create(
messages=messages,
model="chhao/Weak-Driven-Learning",
max_tokens=2048,
temperature=1.0,
top_p=0.95
)
print(completion.choices[0].message.content)Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.