Some stats: - Total number of links: 24459
This file contains 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
https://huggingface.co/DucHaiten/DucHaitenJourney | |
https://huggingface.co/DucHaiten/DucHaitenAIart | |
https://huggingface.co/DucHaiten/DucHaiten-StyleLikeMe | |
https://huggingface.co/DucHaiten/DucHaitenDarkside | |
https://huggingface.co/DucHaiten/DucHaitenSuperCute | |
https://huggingface.co/DucHaiten/DucHaitenDreamWorld | |
https://huggingface.co/DucHaiten/DH_ClassicAnime | |
https://huggingface.co/DucHaiten/DucHaitenAnime | |
https://huggingface.co/DucHaiten/DucHaitenAnimated | |
https://huggingface.co/phoenix-1708/drned |
notes on AI state of the art, with a focus on generative and large language models. These are the "raw materials" for the https://lspace.swyx.io/ newsletter.
This repo used to be called https://github.com/sw-yx/prompt-eng, but was renamed because Prompt Engineering is Overhyped. This is now an AI Engineering notes repo.
This Readme is just the high level overview of the space; you should see the most updates in the OTHER markdown files in this repo:
TEXT.md
- text generation, mostly with GPT-4TEXT_CHAT.md
- information on ChatGPT and competitors, as well as derivative products
This file contains 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
name: Build Android APK | |
run-name: ${{ github.event.inputs.repository }}:${{ github.event.inputs.taskName }} | |
on: | |
workflow_dispatch: | |
inputs: | |
repository: | |
description: "Git repository URL" | |
required: true | |
default: "https://github.com/android/sunflower" |
This file contains 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
# This is a basic workflow to help you get started with Actions | |
name: Develop | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the develop branch | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] |
This file contains 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
# This is a basic workflow to help you get started with Actions | |
name: Pre-Release | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on pull request events but only for the main branch | |
pull_request: | |
branches: [main] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel |