Text Generation
Transformers
Safetensors
qwen2
qwen
qwen2.5-coder
code
fine-tuned
russian
conversational
text-generation-inference
Instructions to use Vilyam888/Broken_Code_Generation.1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Vilyam888/Broken_Code_Generation.1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Vilyam888/Broken_Code_Generation.1.0") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Vilyam888/Broken_Code_Generation.1.0") model = AutoModelForCausalLM.from_pretrained("Vilyam888/Broken_Code_Generation.1.0") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Vilyam888/Broken_Code_Generation.1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Vilyam888/Broken_Code_Generation.1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vilyam888/Broken_Code_Generation.1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Vilyam888/Broken_Code_Generation.1.0
- SGLang
How to use Vilyam888/Broken_Code_Generation.1.0 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 "Vilyam888/Broken_Code_Generation.1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vilyam888/Broken_Code_Generation.1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "Vilyam888/Broken_Code_Generation.1.0" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Vilyam888/Broken_Code_Generation.1.0", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Vilyam888/Broken_Code_Generation.1.0 with Docker Model Runner:
docker model run hf.co/Vilyam888/Broken_Code_Generation.1.0
| from __future__ import annotations | |
| import argparse | |
| import json | |
| import sys | |
| from pathlib import Path | |
| import torch | |
| _METRICS_DIR = Path(__file__).resolve().parent | |
| _SCRIPTS_DIR = _METRICS_DIR.parent | |
| for path in (_METRICS_DIR, _SCRIPTS_DIR): | |
| if str(path) not in sys.path: | |
| sys.path.insert(0, str(path)) | |
| from broken_code_generation import ( # noqa: E402 | |
| ADAPTER_DIR, | |
| DEFAULT_EVAL_LIMIT, | |
| EVAL_FILE, | |
| FILE_JSON_VALIDITY, | |
| GEN_MAX_NEW_TOKENS, | |
| GEN_SEED, | |
| GEN_TEMPERATURE, | |
| GEN_TOP_P, | |
| MODEL_ID, | |
| ) | |
| from evaluate_model import REQUIRED_FIELDS, generate_one, load_model_and_tokenizer # noqa: E402 | |
| from report_io import metrics_path, write_report # noqa: E402 | |
| def parse_args() -> argparse.Namespace: | |
| parser = argparse.ArgumentParser( | |
| description=f"JSON validity for {MODEL_ID} only (adapter at {ADAPTER_DIR})." | |
| ) | |
| parser.add_argument("--limit", type=int, default=DEFAULT_EVAL_LIMIT) | |
| parser.add_argument("--output", type=Path, default=None) | |
| return parser.parse_args() | |
| def main() -> None: | |
| args = parse_args() | |
| torch.manual_seed(GEN_SEED) | |
| if not ADAPTER_DIR.exists(): | |
| raise FileNotFoundError(f"Adapter not found: {ADAPTER_DIR}") | |
| records = json.loads(EVAL_FILE.read_text(encoding="utf-8"))[: args.limit] | |
| print(f"Model: {MODEL_ID}") | |
| print(f"Adapter: {ADAPTER_DIR}") | |
| print(f"Samples: {len(records)} from {EVAL_FILE}") | |
| model, tokenizer = load_model_and_tokenizer(ADAPTER_DIR) | |
| model.eval() | |
| valid_json = required = difficulty_ok = tags_ok = 0 | |
| results = [] | |
| for index, record in enumerate(records, start=1): | |
| row = {"index": index, "status": "error"} | |
| try: | |
| generated = generate_one( | |
| model=model, | |
| tokenizer=tokenizer, | |
| topic_tags=record["topic_tags"], | |
| difficulty=record["difficulty"], | |
| max_new_tokens=GEN_MAX_NEW_TOKENS, | |
| temperature=GEN_TEMPERATURE, | |
| top_p=GEN_TOP_P, | |
| ) | |
| valid_json += 1 | |
| row["status"] = "ok" | |
| row["generated"] = generated | |
| if REQUIRED_FIELDS.issubset(generated): | |
| required += 1 | |
| if generated.get("difficulty") == record["difficulty"]: | |
| difficulty_ok += 1 | |
| if set(generated.get("topic_tags", {})) == set(record["topic_tags"]): | |
| tags_ok += 1 | |
| except Exception as error: # noqa: BLE001 | |
| row["error"] = str(error) | |
| results.append(row) | |
| print(f"[{MODEL_ID}] {index}/{len(records)} valid_json={valid_json}", flush=True) | |
| n = max(len(records), 1) | |
| report = { | |
| "metric_group": "json_validity", | |
| "model": MODEL_ID, | |
| "adapter_dir": str(ADAPTER_DIR), | |
| "evaluation_file": str(EVAL_FILE), | |
| "samples_evaluated": len(records), | |
| "generation": { | |
| "temperature": GEN_TEMPERATURE, | |
| "top_p": GEN_TOP_P, | |
| "max_new_tokens": GEN_MAX_NEW_TOKENS, | |
| "seed": GEN_SEED, | |
| }, | |
| "metrics": { | |
| "valid_json_rate": round(valid_json / n, 4), | |
| "required_fields_rate": round(required / n, 4), | |
| "difficulty_match_rate": round(difficulty_ok / n, 4), | |
| "topic_tag_key_match_rate": round(tags_ok / n, 4), | |
| }, | |
| "metrics_counts": { | |
| "valid_json": valid_json, | |
| "required_fields_complete": required, | |
| "difficulty_match": difficulty_ok, | |
| "topic_tag_keys_match": tags_ok, | |
| }, | |
| "results": results, | |
| } | |
| write_report(args.output or metrics_path(FILE_JSON_VALIDITY), report) | |
| if __name__ == "__main__": | |
| main() | |