This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gguf | |
def decode_field(field: gguf.ReaderField): | |
if field and field.types: | |
main_type = field.types[0] | |
if main_type == gguf.GGUFValueType.ARRAY: | |
sub_type = field.types[-1] | |
if sub_type == gguf.GGUFValueType.STRING: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width"> | |
<title>Basic Snake HTML Game (Functional programming)</title> | |
<meta charset="UTF-8"> | |
<style> | |
html, body { | |
height: 100%; | |
margin: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import argparse | |
import contextlib | |
import json | |
import os | |
import re | |
import sys | |
import numpy as np | |
import math | |
import torch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
microsoft/Phi-3-mini-4k-instruct | |
"{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') %}{{'<|user|>' + '\n' + message['content'] + '<|end|>' + '\n' + '<|assistant|>' + '\n'}}{% elif (message['role'] == 'assistant') %}{{message['content'] + '<|end|>' + '\n'}}{% endif %}{% endfor %}" | |
microsoft/Phi-3-mini-128k-instruct | |
"{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') %}{{'<|user|>' + '\n' + message['content'] + '<|end|>' + '\n' + '<|assistant|>' + '\n'}}{% elif (message['role'] == 'assistant') %}{{message['content'] + '<|end|>' + '\n'}}{% endif %}{% endfor %}" | |
microsoft/Phi-3-small-8k-instruct | |
"{{ bos_token }}{% for message in messages %}{{'<|' + message['role'] + '|>' + '\n' + message['content'] + '<|end|>\n' }}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>\n' }}{% else %}{{ eos_token }}{% endif %}" | |
microsoft/Phi-3-small-128k-instruct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
{ | |
"role": "system", | |
"content": "Bạn là nhà văn Nam Cao, chuyên viết truyện ngắn theo chủ đề cho trước. Phong cách viết văn: Đi sâu vào khai thác đời sống nội tâm, tinh thần của nhân vật, sử dụng phương pháp độc thoại nội tâm đầy khéo léo và tinh tế, coi trọng việc phản ánh thực tại xã hội đương thời và đưa ra tiếng nói cảm thông cho tầng lớp nhân dân lao động phải chịu nhiều cơ cực." | |
}, | |
{ | |
"role": "user", | |
"content": "Viết theo chủ đề sau:\n\nMực, con chó già của nhà, đã bị người ta định giết từ lâu vì tính hung dữ của nó, nhưng lại được giữ lại khi bà chủ ốm vào dịp Thanh Minh. Sau đó, dự định giết Mực lại bị hoãn khi con út của bà bắt đầu bú sữa. Khi Du, người con cả, trở về, mọi người đều vui mừng, nhưng Mực, dù già và yếu đuối, nhận ra Du và tỏ ra thất vọng. Du cố vuốt ve Mực nhưng bị từ chối và bị Mực đánh đuổi khiến Du tỏ ra thương tiếc và ngạc nhiên. Cuối cùng, em trai của Du, Tú, cũng đe dọa giết Mực cho Du ăn vào ngày hôm sau." | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from functionary.prompt_template import get_default_prompt_template | |
MESSAGES = [ | |
{ | |
"role": "user", | |
"content": "What is the weather for Istanbul?" | |
}, | |
{ | |
"role": "assistant", | |
"content": "Yes I will try", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const axios = require('axios').default; | |
const GRAMMAR = ` | |
root ::= response | function | |
response ::= "response" ": " ([^\r]*) | |
function ::= "function" ": {" ( | |
ws "\\"name\\":" ws string "," | |
ws "\\"arguments\\":" ws object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This file calculates a lookup table for all the day that daylight saving take effect. | |
* The output file is a hpp file, which can use used in Arduino project. | |
* If you don't have nodejs on your machine, you can use an online compiler, for example: https://www.tutorialspoint.com/execute_nodejs_online.php | |
*/ | |
// number of years in the future to generate | |
const NB_OF_YEARS = 20; | |
// set the current timezone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <BLEDevice.h> | |
#include <BLEUtils.h> | |
#include <BLEScan.h> | |
#include <BLEAdvertisedDevice.h> | |
int scanTime = 5; // In seconds | |
BLEScan * pBLEScan; | |
class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { | |
void onResult(BLEAdvertisedDevice advertisedDevice) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Watch /etc/wireguard/wg0.conf for changes | |
[Path] | |
PathModified=/etc/wireguard/wg0.conf | |
[Install] | |
WantedBy=multi-user.target |
NewerOlder