Instructions to use nlop/nova with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use nlop/nova with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf nlop/nova:Q4_0 # Run inference directly in the terminal: llama cli -hf nlop/nova:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf nlop/nova:Q4_0 # Run inference directly in the terminal: llama cli -hf nlop/nova:Q4_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf nlop/nova:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf nlop/nova:Q4_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf nlop/nova:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf nlop/nova:Q4_0
Use Docker
docker model run hf.co/nlop/nova:Q4_0
- LM Studio
- Jan
- vLLM
How to use nlop/nova with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "nlop/nova" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nlop/nova", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/nlop/nova:Q4_0
- Ollama
How to use nlop/nova with Ollama:
ollama run hf.co/nlop/nova:Q4_0
- Unsloth Studio
How to use nlop/nova with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nlop/nova to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nlop/nova to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for nlop/nova to start chatting
- Docker Model Runner
How to use nlop/nova with Docker Model Runner:
docker model run hf.co/nlop/nova:Q4_0
- Lemonade
How to use nlop/nova with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull nlop/nova:Q4_0
Run and chat with the model
lemonade run user.nova-Q4_0
List all available models
lemonade list
- Atomic Chat
| license: apache-2.0 | |
| language: | |
| - aa | |
| - ae | |
| - am | |
| - en | |
| - es | |
| - ar | |
| - ja | |
| - eo | |
| - fr | |
| - ru | |
| pipeline_tag: text-generation | |
| tags: | |
| - nova | |
| - ai | |
| - nlop | |
| - nexiloop | |
| - llama | |
| - llm | |
| - novaai | |
| - ainlop | |
| - nlopai | |
| - nexai | |
| # Nexiloop Nova Model: Fully Open Source | |
| **License:** Apache-2.0 | |
| **Datasets:** | |
| - cerebras/SlimPajama-627B | |
| - bigcode/starcoderdata | |
| - OpenAssistant/oasst_top1_2023-08-25 | |
| **Language:** English | |
| --- | |
| <div align="center"> | |
| # Nexiloop Nova-1.1B | |
| **Open Source and Ready for Use** | |
| Fully optimized for various applications with a compact architecture. | |
| </div> | |
| [GitHub Repository](https://github.com/mohameodo/nova) | |
| --- | |
| The **Nexiloop Nova-1.1B** model is a fine-tuned version of the Llama 2 architecture with **1.1B parameters**. It has been trained on over **3 trillion tokens** and is built to provide high-quality, efficient responses in a wide variety of conversational contexts. | |
| ### **Features:** | |
| - **Optimized for Compact Systems:** With just 1.1B parameters, Nexiloop Nova is perfect for applications where memory and computation are limited. | |
| - **Pretraining:** The model has been pre-trained on the **SlimPajama-627B** dataset, fine-tuned for even better conversational abilities. | |
| ### **Training Overview:** | |
| We adopted the same architecture and tokenizer as **Llama 2**, which allows Nexiloop Nova to plug into many existing open-source projects. The training, which started on **2023-09-01**, used **16 A100-40G GPUs** to achieve remarkable optimization. | |
| The model was initially fine-tuned on a variant of the **UltraChat** dataset, which consists of synthetic dialogues generated by **ChatGPT**. It was then further aligned using the **DPOTrainer** from **TRL**, utilizing a ranking dataset containing **64k prompts** and responses from **GPT-4**. | |
| --- | |
| ### **How to Use Nexiloop Nova Model** | |
| To use Nexiloop Nova, you'll need **transformers>=4.34**. Below is a simple example showing how to integrate the model into your application. | |
| #### Example Code: | |
| ```bash | |
| # Install necessary libraries | |
| pip install transformers==4.34 | |
| pip install accelerate | |
| import torch | |
| from transformers import pipeline | |
| pipe = pipeline("text-generation", model="nexiloop/nova", torch_dtype=torch.bfloat16, device_map="auto") | |
| # We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating | |
| messages = [ | |
| { | |
| "role": "system", | |
| "content": "You are a friendly chatbot who always responds in the style of a pirate", | |
| }, | |
| {"role": "user", "content": "How many helicopters can a human eat in one sitting?"}, | |
| ] | |
| prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True) | |
| outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95) | |
| print(outputs[0]["generated_text"]) | |
| # <|system|> | |
| # You are a friendly chatbot who always responds in the style of a pirate.</s> | |
| # <|user|> | |
| # How many helicopters can a human eat in one sitting?</s> | |
| # <|assistant|> | |
| # ... | |
| ``` |