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 Settings
- 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 ast | |
| import json | |
| import re | |
| import sys | |
| from collections import Counter | |
| from pathlib import Path | |
| _METRICS_DIR = Path(__file__).resolve().parent | |
| if str(_METRICS_DIR) not in sys.path: | |
| sys.path.insert(0, str(_METRICS_DIR)) | |
| from broken_code_generation import EVAL_FILE, FILE_CODE, FILE_JSON_VALIDITY, MODEL_ID # noqa: E402 | |
| from report_io import metrics_path, write_report # noqa: E402 | |
| def parse_args() -> argparse.Namespace: | |
| parser = argparse.ArgumentParser(description=f"Code metrics for {MODEL_ID} only.") | |
| parser.add_argument( | |
| "--from-generation-report", | |
| type=Path, | |
| default=metrics_path(FILE_JSON_VALIDITY), | |
| ) | |
| parser.add_argument("--output", type=Path, default=None) | |
| return parser.parse_args() | |
| def normalize_code(code: str) -> str: | |
| return code.replace("\\n", "\n").replace('\\"', '"') | |
| def is_valid_python(code: str) -> bool: | |
| try: | |
| ast.parse(normalize_code(code)) | |
| return True | |
| except SyntaxError: | |
| return False | |
| def code_tokens(code: str) -> Counter: | |
| return Counter(re.findall(r"[A-Za-z_][A-Za-z0-9_]*|\d+|[^\s]", code)) | |
| def code_token_f1(reference: str, hypothesis: str) -> float: | |
| ref, hyp = code_tokens(reference), code_tokens(hypothesis) | |
| if not ref and not hyp: | |
| return 1.0 | |
| if not ref or not hyp: | |
| return 0.0 | |
| overlap = sum((ref & hyp).values()) | |
| precision = overlap / sum(hyp.values()) | |
| recall = overlap / sum(ref.values()) | |
| if precision + recall == 0: | |
| return 0.0 | |
| return 2 * precision * recall / (precision + recall) | |
| def main() -> None: | |
| args = parse_args() | |
| gen_path = args.from_generation_report | |
| if not gen_path.exists(): | |
| raise FileNotFoundError(f"Run 02_json_validity.py first. Missing: {gen_path}") | |
| references = json.loads(EVAL_FILE.read_text(encoding="utf-8")) | |
| gen_report = json.loads(gen_path.read_text(encoding="utf-8")) | |
| if gen_report.get("model") != MODEL_ID: | |
| raise ValueError(f"Report is not for {MODEL_ID}: {gen_report.get('model')}") | |
| syntax_ok = 0 | |
| code_f1_scores: list[float] = [] | |
| total = len(gen_report.get("results", [])) | |
| for ref, row in zip(references, gen_report.get("results", [])): | |
| if row.get("status") != "ok": | |
| continue | |
| gen_code = str(row["generated"].get("broken_code", "")) | |
| if is_valid_python(gen_code): | |
| syntax_ok += 1 | |
| code_f1_scores.append(code_token_f1(str(ref.get("broken_code", "")), gen_code)) | |
| n = max(total, 1) | |
| f1_mean = round(sum(code_f1_scores) / max(len(code_f1_scores), 1), 4) if code_f1_scores else None | |
| report = { | |
| "metric_group": "code_metrics", | |
| "model": MODEL_ID, | |
| "source_report": str(gen_path), | |
| "metrics": { | |
| "broken_code_syntax_valid_rate": round(syntax_ok / n, 4), | |
| "code_token_f1_broken_code": f1_mean, | |
| "codebleu_broken_code": f1_mean, | |
| }, | |
| } | |
| write_report(args.output or metrics_path(FILE_CODE), report) | |
| if __name__ == "__main__": | |
| main() | |