sudo apt update && sudo apt upgrade
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| function deleteSavedItems() { | |
| var query = document.querySelectorAll("#sc-saved-cart input[value=Delete]") | |
| if (query.length) { | |
| query[0].click(); | |
| } | |
| if (query.length > 1) { | |
| setTimeout(deleteSavedItems,100); | |
| } | |
| else { | |
| console.log('Finished'); |
This file contains hidden or 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 transformers | |
| model_name = 'Intel/neural-chat-7b-v3-1' | |
| model = transformers.AutoModelForCausalLM.from_pretrained(model_name) | |
| tokenizer = transformers.AutoTokenizer.from_pretrained(model_name) | |
| def generate_response(system_input, user_input): | |
| # Format the input using the provided template |
This file contains hidden or 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 transformers | |
| model_name = 'Intel/neural-chat-7b-v3-1' | |
| model = transformers.AutoModelForCausalLM.from_pretrained(model_name) | |
| tokenizer = transformers.AutoTokenizer.from_pretrained(model_name) | |
| def generate_response(system_input, user_input): | |
| # Format the input using the provided template |
This file contains hidden or 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
| !pip install transformers optimum | |
| !pip install auto-gptq --extra-index-url https://huggingface.github.io/autogptq-index/whl/cu118/ | |
| from transformers import AutoModelForCausalLM, AutoTokenizer | |
| model_name_or_path = "TheBloke/zephyr-7B-beta-GPTQ" | |
| model = AutoModelForCausalLM.from_pretrained(model_name_or_path, | |
| device_map="auto", | |
| trust_remote_code=False, |
This file contains hidden or 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
| #!/bin/sh | |
| set -x | |
| NAME=thingy | |
| MIRROR=ftp.at.debian.org/debian | |
| tmpdir=$(mktemp -p "${TMPDIR:-/tmp/}" -d $NAME-XXXX) || exit 1 | |
| #tmpdir=/tmp/thingy | |
| #mkdir -p "$tmpdir" |
This file contains hidden or 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
| // gcc aml-upgrade-package-extract.c -o aml-upgrade-package-extract | |
| // ./aml-upgrade-package-extract update-usb-burning-mode.img | |
| // /dev/sdX - fat32 sdcard | |
| // Make bootable Android update: | |
| // dd if=aml_sdc_burn.UBOOT bs=1 count=442 of=/dev/sdX | |
| // dd if=aml_sdc_burn.UBOOT seek=1 skip=1 bs=512 of=/dev/sdX | |
| // sync |
This file contains hidden or 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
| #!/bin/bash | |
| inp="$1" # Get the input file from the command line argument | |
| # Check if the input file exists | |
| if [ ! -f "$inp" ]; then | |
| echo "File not found: $inp" | |
| exit 1 | |
| fi |