- Set pull token and login with
docker
using the following command
$env:CR_PAT = "your_token"
$env:CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
- In
launch/conf/platform.env
, uncomment and setKAFKA_TAG=7.7.0
createllm
package - https://pythonscholar.com/build-a-large-language-model-from-scratch/databricks-dolly-15k
(approximately 15,000 instruction/response fine-tuning records) - https://www.leewayhertz.com/build-private-llm/Person:
ChatGPT:
One of the most prominent types of generative AI models is the Generative Adversarial Network (GAN), introduced by Ian Goodfellow and his colleagues in 2014. GANs consist of two neural networks, a generator and a discriminator, which work in opposition to each other. The generator tries to create content that is indistinguishable from real data, while the discriminator tries to differentiate between real and generated data. This adversarial process helps the generator improve its output over time.
Applications o
#!/usr/bin/python | |
import RPi.GPIO as GPIO | |
import time | |
#GPIO SETUP | |
channel = 21 | |
GPIO.setmode(GPIO.BCM) | |
GPIO.setup(channel, GPIO.IN) | |
def moisture_detect(channel): |
A basic implementation of logging with Go language. Copied from https://www.honeybadger.io/blog/golang-logging/
log
package. Logs will be saved in logs.txt
.go run log.go
This is a short description of how to get git
credentials in an EC2 instance set-up for CI/CD scripts. In the following scripts, we do the following:
jq
to parse the JSON output from CLI.aws
CLI for ssm
(AWS Systems Manager) to extract parameter values for git
user.git
user name globally.GIT_ASKPASS
that will return the git
password.