This set of instructions goes with this presentation deck.
yum install postgis24_10
| # IMPORTANT! | |
| # This gist has been transformed into a github repo | |
| # You can find the most recent version there: | |
| # https://github.com/Neo23x0/auditd | |
| # ___ ___ __ __ | |
| # / | __ ______/ (_) /_____/ / | |
| # / /| |/ / / / __ / / __/ __ / | |
| # / ___ / /_/ / /_/ / / /_/ /_/ / | |
| # /_/ |_\__,_/\__,_/_/\__/\__,_/ |
This set of instructions goes with this presentation deck.
yum install postgis24_10
| CREATE TABLE dict_english ( | |
| word varchar NOT NULL | |
| ); | |
| CREATE UNIQUE INDEX dict_english_word_idx ON dict_english (word); |
| ''' | |
| https://arxiv.org/abs/2312.00858 | |
| 1. put this file in ComfyUI/custom_nodes | |
| 2. load node from <loaders> | |
| start_step, end_step: apply this method when the timestep is between start_step and end_step | |
| cache_interval: interval of caching (1 means no caching) | |
| cache_depth: depth of caching | |
| ''' |
| import argparse | |
| import json | |
| import logging | |
| import os | |
| import re | |
| import shutil | |
| from concurrent.futures import ProcessPoolExecutor, as_completed | |
| from dataclasses import dataclass | |
| from datetime import datetime | |
| from typing import Any, Callable, Dict, List, Literal, Optional, Tuple |
| import type { | |
| CollectionBeforeOperationHook, | |
| FileData, | |
| Plugin, | |
| UploadCollectionSlug, | |
| } from 'payload' | |
| type AspectRatios = Record<string, number> | |
| type Collections = Partial<Record<UploadCollectionSlug, AspectRatios>> |