https://github.com/jondurbin/airoboros
pip install --upgrade airoboros==2.0.13
https://github.com/jondurbin/airoboros
pip install --upgrade airoboros==2.0.13
@echo off | |
for %%i in (*.jpg) do ( | |
set filename=%%i | |
set caption_filename=%%~ni.txt | |
set caption=%%~ni | |
setlocal EnableDelayedExpansion | |
for /f "tokens=1 delims=()" %%a in ("!caption!") do ( |
{ | |
"pretrained_model_name_or_path": "D:/Others/StableDiffusion/checkpoints/Stable-diffusion/realistic-vision-v13.ckpt", | |
"v2": false, | |
"v_parameterization": false, | |
"logging_dir": "D:/Others/StableDiffusion/training_data/log", | |
"train_data_dir": "D:/Others/StableDiffusion/training_data/images", | |
"reg_data_dir": "", | |
"output_dir": "D:/Others/StableDiffusion/training_data/model", | |
"max_resolution": "512,512", | |
"learning_rate": 0.0001, |
import React, { useState } from "react" | |
import { Box, Grommet, Button, TextInput } from "grommet" | |
import TattleTheme from "../atomic/theme" | |
import Dropzone from "react-dropzone" | |
import axios from "axios" | |
const Queries = () => { | |
const [question, setQuestion] = useState("") | |
const [files, setFiles] = useState([]) |
; Play Never Gonna Give You Up | |
; Add the following lines to your slicer software to play the songs. | |
M300 S494 P250 | |
M300 S554 P250 | |
M300 S587 P250 | |
M300 S494 P250 | |
M300 S0 P250 | |
M300 S659 P250 | |
M300 S740 P250 | |
M300 S659 P750 |
body { | |
margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */ | |
} | |
body::before { | |
content: "XS"; | |
color: red; | |
font-size: 2rem; | |
font-weight: bold; | |
position: fixed; |
default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |
#!/bin/bash | |
# This will install everything required to run a basic Postal installation. | |
# This should be run on a clean Ubuntu 16.04 server. | |
# | |
# Once the installation has completed you will be able to access the Postal web | |
# interface on port 443. It will have a self-signed certificate. | |
# | |
# * Change the MySQL & RabbitMQ passwords | |
# * Create your first admin user with 'postal make-user' |
import Vue from "vue"; | |
import {Bar, Line, mixins} from "vue-chartjs"; | |
Vue.component("chartline", { | |
extends: Line, | |
mixins: [mixins.reactiveProp], | |
props: ["options"], | |
mounted() { | |
const max = Math.max(...this.chartData.datasets[0].data); | |
this.renderChart(this.chartData, { |