--- base_model: fakezeta/amoral-Qwen3-4B tags: - text-generation-inference - transformers - unsloth - qwen3 - trl - sft - openvino - openvino-export license: apache-2.0 language: - en datasets: - soob3123/amoral_reasoning pipeline_tag: text-generation --- This model was converted to OpenVINO from [`fakezeta/amoral-Qwen3-4B`](https://huggingface.co/fakezeta/amoral-Qwen3-4B) using [optimum-intel](https://github.com/huggingface/optimum-intel) via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space. First make sure you have optimum-intel installed: ```bash pip install optimum[openvino] ``` To load your model you can do as follows: ```python from optimum.intel import OVModelForCausalLM model_id = "fakezeta/amoral-Qwen3-4B-openvino" model = OVModelForCausalLM.from_pretrained(model_id) ``` To use the model in Local AI ``` local-ai run huggingface://fakezeta/amoral-Qwen3-4B-openvino/model.yaml ```