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
| { | |
| "points": [ | |
| { | |
| "name": "Seaside Pier", | |
| "latitude": 30.3870, | |
| "longitude": -87.3940, | |
| "amenity": "pier", | |
| "description": "A scenic pier with great views of the Gulf." | |
| }, | |
| { |
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 | |
| # tag-generator.sh | |
| # Original Author: Justine Tunney <[email protected]> | |
| # Remix: Steven Wilkinson (@seafella) & GPT4 | |
| # Source: https://gist.github.com/seafella/e8d120583c91687501808a133d9fe505 | |
| # License: Apache 2.0 | |
| # | |
| # This shell script is modified to generate tags suitable for DreamBooth training | |
| # and save them to a .txt file with the same name as the image file. It uses | |
| # LLaVA for analyzing the picture and generating tags. |
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 | |
| # rename-pictures.sh | |
| # Author: Justine Tunney <[email protected]> | |
| # License: Apache 2.0 | |
| # | |
| # This shell script can be used to ensure all the images in a folder | |
| # have good descriptive filenames that are written in English. It's | |
| # based on the Mistral 7b and LLaVA v1.5 models. | |
| # | |
| # For example, the following command: |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |