Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
| name: Contributor Trust Check | |
| on: | |
| pull_request_target: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write |
| # Functions to manage multiple GitHub accounts via SSH | |
| # Example for switching to and managing my tailwiinder account | |
| # | |
| # Setup Required: | |
| # 1. Configure SSH hosts in ~/.ssh/config | |
| # 2. Set up SSH keys for your GitHub accounts | |
| # 3. Add these functions to your .zshrc | |
| # | |
| # Usage: | |
| # - clone-tom: Clone a new repository using tailwiinder account |
| """ | |
| The 2024 Transformer (the Noam Transformer): | |
| - RMSNorm | |
| - GQA or some combination | |
| - Sliding window attention | |
| - Swiglu | |
| - RoPE (Rotary Positional Embedding) | |
| LLM Arches: | |
| hidden | MLP mult. | n_layers | rope_theta | GQA Group Size | GLU Act. | ops |
| Transaction Name,Organization Name,Funding Type,Money Raised,Lead Investors,Announced Date,Organization Industries,Funding Stage,Pre-Money Valuation,Equity Only Funding,Organization Description,Organization Location,Diversity Spotlight (US Headquarters Only),Organization Revenue Range,Organization Website,Total Funding Amount,Funding Status,Number of Funding Rounds,Investor Names,Number of Partner Investors,Number of Investors,CB Rank (Funding Round) | |
| Seed Round - Binske,Binske,Seed,"$80,259,714",,"Jan 17, 2023","Alternative Medicine , Cannabis , Marketing , Wholesale",Seed,,Yes,"Binske delivers cannabis including the selection of flowers, vapes, edibles, extracts, and pre-rolls.","Denver , Colorado , United States , North America",,$1M to $10M,www.binske.com/,"$80,259,714",Seed,1,,,,"47,792" | |
| Seed Round - Descope,Descope,Seed,"$53,000,000","GGV Capital , Lightspeed Venture Partners","Feb 15, 2023","Apps , Developer Platform , Information Technology , Software",Seed,,Yes,"Descope enables any developer to create |
| 18 | |
| 22 | |
| 58 | |
| 294 | |
| 501 | |
| 753 | |
| 762 | |
| 780 | |
| 903 | |
| 1068 |
| """ | |
| stable diffusion dreaming | |
| creates hypnotic moving videos by smoothly walking randomly through the sample space | |
| example way to run this script: | |
| $ python stablediffusionwalk.py --prompt "blueberry spaghetti" --name blueberry | |
| to stitch together the images, e.g.: | |
| $ ffmpeg -r 10 -f image2 -s 512x512 -i blueberry/frame%06d.jpg -vcodec libx264 -crf 10 -pix_fmt yuv420p blueberry.mp4 |
| from __future__ import division, print_function | |
| import math | |
| from oxmaps import Line, Pano, PanoImage, PanoTile, Point, db | |
| from PIL import Image | |
| ids = [ | |
| 'eGYyAlN9kvBEg6AYtJV60A', | |
| 'CCQWTbDqYokwHNwBWnl8wQ', | |
| '_UBAlMtHNb7hUYpxXkmcCA', | |
| 'tBMPwhLVH4Kk8EdQc15-3w', |
| name: Security audit | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| push: | |
| paths: | |
| - '**/Cargo.toml' | |
| - '**/Cargo.lock' | |
| jobs: | |
| security_audit: |