— Clone repository with submodules automatically:
git clone --recursive [email protected]:name/repo.git
— Initialize submodules after regular cloning:
— Clone repository with submodules automatically:
git clone --recursive [email protected]:name/repo.git
— Initialize submodules after regular cloning:
Online music/voice separator based on neural nets (using best models, including some from Sound Demixing Challenge) https://mvsep.com/
Quality of algorithms comparison https://mvsep.com/en/quality
Details of algorithms https://mvsep.com/en/algorithms
GUI for popular Vocal Remover models that uses Deep Neural Networks.
Anbox had been deprecated, and cannot/shouldn't be used.
One alternative is Waydroid:
https://github.com/waydroid/waydroid
References:
// ==UserScript== | |
// @name mBank Saldo | |
// @namespace https://gist.github.com/darkowic/f4454f06658ec2ef1e2dbe0d6e8648d2 | |
// @version 0.1 | |
// @description Wpływy - Wydatki = Saldo - skrypt dodaje pole "Saldo" w widoku histori transakcji dla serwisu transakcyjnego mbank.pl. | |
// @author https://github.com/darkowic | |
// @match https://online.mbank.pl/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=mbank.pl | |
// @grant none | |
// @downloadURL https://gist.github.com/darkowic/f4454f06658ec2ef1e2dbe0d6e8648d2/raw/mbank-saldo.user.js |
Good question! I am collecting human data on how quantization affects outputs. See here for more information: ggml-org/llama.cpp#5962
In the meantime, use the largest that fully fits in your GPU. If you can comfortably fit Q4_K_S, try using a model with more parameters.
See the wiki upstream: https://github.com/ggerganov/llama.cpp/wiki/Feature-matrix
import anthropic | |
client = anthropic.Anthropic( | |
# defaults to os.environ.get("ANTHROPIC_API_KEY") | |
api_key="my_api_key", | |
) | |
message = client.messages.create( | |
model="claude-3-opus-20240229", | |
max_tokens=4000, | |
temperature=0, |
import express from 'express'; | |
import { OpenAI } from 'openai'; | |
const app = express(); | |
const openai = new OpenAI({ | |
apiKey: 'API_KEY' | |
}); | |
app.use(express.json()); |
// Updated: Aug. 20, 2024 | |
// Run: node testRegex.js whatever.txt | |
// Live demo: https://jina.ai/tokenizer | |
// LICENSE: Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0) | |
// COPYRIGHT: Jina AI | |
const fs = require('fs'); | |
const util = require('util'); | |
// Define variables for magic numbers | |
const MAX_HEADING_LENGTH = 7; |