Skip to content

Instantly share code, notes, and snippets.

View eastoncrafter's full-sized avatar

eastoncrafter

View GitHub Profile
backend: llama-cpp
context_size: 4096
f16: true
gpu_layers: 25
mmap: true
name: llava-1.6-mistral
roles:
user: "USER:"
name: phi-2-chat
mmap: true
parameters:
model: huggingface://l3utterfly/phi-2-layla-v1-chatml-gguf/phi-2-layla-v1-chatml-Q8_0.gguf
gpu_layers: 2
template:
chat_message: |
<|im_start|>{{if eq .RoleName "assistant"}}assistant{{else if eq .RoleName "system"}}system{{else if eq .RoleName "user"}}user{{end}}
{{if .Content}}{{.Content}}{{end}}
<|im_end|>
@eastoncrafter
eastoncrafter / docker-compose.yaml
Created August 15, 2022 21:19
A working docker compose file for netmaker, with traefik removed. Make sure to comment out the ssl parts of the mosquitto config, otherwise just leave it as recommended
version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.14.6
cap_add:
- NET_ADMIN
- NET_RAW
- SYS_MODULE
@eastoncrafter
eastoncrafter / create_sub.py
Created July 27, 2022 04:32 — forked from jinschoi/create_sub.py
Python script to generate Flipper RAW .sub files from OOK bitstreams
#!/usr/bin/env python3
from typing import Iterable, Union, Any
# freq: frequency in Hz
# zerolen: length of space bit in μs
# onelen: length of mark bit in μs
# repeats: number of times to repeat sequence
# pause: time to wait in μs between sequences
# bits: string of ones and zeros to represent sequence