Millun Atluri
044b6ac07a
update model merging
2023-09-12 12:01:44 -04:00
Millun Atluri
774ade679d
updated ti training
2023-09-12 12:01:44 -04:00
Millun Atluri
bf6c5cbe77
update development guide
2023-09-12 12:01:44 -04:00
Millun Atluri
7dd20090c2
update na & development docs
2023-09-12 12:01:44 -04:00
Millun Atluri
7c3fb3c54a
updated nodes docs
2023-09-12 12:01:44 -04:00
Millun Atluri
2c8521b25d
updated naming
2023-09-12 12:01:44 -04:00
Millun Atluri
179a3aaa71
support & triaging
2023-09-12 12:01:44 -04:00
Millun Atluri
49423a791d
updated workflow links
2023-09-12 12:01:44 -04:00
Millun Atluri
666b5d7a60
added example workflows
2023-09-12 12:01:44 -04:00
Millun Atluri
d4143136d0
Update new developer docs
2023-09-12 12:01:44 -04:00
Millun Atluri
f6ced9f54b
new contributor docs
2023-09-12 12:01:44 -04:00
Millun Atluri
c82ea5a812
SDXL prompting
2023-09-12 12:01:44 -04:00
Millun Atluri
17891ae703
Update communityNodes.md info
2023-09-12 12:01:44 -04:00
Millun Atluri
e94dc47d56
Update contributingNodes.md with correct information
2023-09-12 12:01:44 -04:00
vedant-3010
47ea71d9bd
fixed quick links responsiveness
2023-09-08 08:38:06 -04:00
Millun Atluri
252adb9e70
Fixed typos
2023-09-07 13:16:25 +10:00
Keerigan45
40a0b2c366
Update 030_INSTALL_CUDA_AND_ROCM.md
2023-09-07 03:25:26 +02:00
Keerigan45
cfc4caf231
Update 030_INSTALL_CUDA_AND_ROCM.md
...
Added Extra step and clarification on how to choose between 11x or 12x update for Cudnnn dll
2023-09-07 03:24:13 +02:00
Millun Atluri
e16598c48a
Merge branch 'main' into patch-2
2023-09-06 13:59:59 +10:00
Millun Atluri
6506ce3e68
Updated "\" to be escaped in markdown
2023-09-06 13:58:53 +10:00
Millun Atluri
3afa73cd33
Update 030_INSTALL_CUDA_AND_ROCM.md
2023-09-06 13:55:33 +10:00
Kent Keirsey
53f2369d18
Update 030_INSTALL_CUDA_AND_ROCM.md
2023-09-05 08:06:39 -04:00
Jonathan
dfbcb773da
Update communityNodes.md ( #4452 )
...
Fixed bad link
2023-09-05 07:11:40 +00:00
Keerigan45
04c0a83bff
Added extra steps to update the Cudnnn DLL found in the Torch packages
...
I added extra steps to update the Cudnnn DLL found in the Torch package because it wasn't optimised or didn't use the lastest version. So manually updating it can speed up iteration but the result might differ from each card. Exemple i passed from 3 it/s to a steady 20 it/s.
2023-09-05 06:54:06 +02:00
Millun Atluri
eb90ea41fd
Merge branch 'main' into textfontimage
2023-09-05 13:54:46 +10:00
Darren Ringer
384ad2df6a
Merge branch 'main' into patch-2
2023-09-04 21:48:17 -04:00
dunkeroni
10eec546ad
Consolidate and generalize saturation/luminosity adjusters ( #4425 )
...
* Consolidated saturation/luminosity adjust.
Now allows increasing and inverting.
Accepts any color PIL format and channel designation.
* Updated docs/nodes/defaultNodes.md
* shortened tags list to channel types only
* fix typo in mode list
* split features into offset and multiply nodes
* Updated documentation
* Change invert to discrete boolean.
Previous math was unclear and had issues with 0 values.
* chore: black
* chore(ui): typegen
---------
Co-authored-by: psychedelicious <4822129+psychedelicious@users.noreply.github.com>
2023-09-05 11:18:37 +10:00
Darren Ringer
ac3bf81ca4
Update communityNodes.md for consistency and conciseness
...
Trims down a couple of my node descriptions and adjusts the formatting a little bit for consistency.
2023-09-04 20:21:48 -04:00
Darren Ringer
edd64bd537
Replace links to .py files with repo links, and consolidate some nodes
...
Revised links to my node py files, replacing them with links to independent repos. Additionally I consolidated some nodes together (Image and Mask Composition Pack, Size Stepper nodes).
2023-09-04 19:25:12 -04:00
Darren Ringer
8795ea8b06
Merge branch 'main' into patch-2
2023-09-04 19:19:03 -04:00
psychedelicious
d6317bc53f
docs: update INVOCATIONS.md with version info
2023-09-04 19:08:18 +10:00
mickr777
945b9e3a0a
Merge branch 'main' into textfontimage
2023-09-04 15:48:23 +10:00
Darren Ringer
fee5cd9c7e
Update communityNodes.md with a few more nodes
...
Adds my (@dwringer's) released nodes to the community nodes page.
2023-09-03 02:37:36 -04:00
Jonathan
b0cce8008a
Update communityNodes.md ( #4442 )
...
* Update communityNodes.md
Added some of my nodes to the community listing.
2023-09-03 16:31:12 +12:00
mickr777
7d50e413bc
Merge branch 'main' into textfontimage
2023-09-02 18:12:56 +10:00
mickr777
4047343503
Add textfontimage node to communityNodes.md
2023-08-30 19:19:49 +10:00
psychedelicious
044d4c107a
feat(nodes): move all invocation metadata (type, title, tags, category) to decorator
...
All invocation metadata (type, title, tags and category) are now defined in decorators.
The decorators add the `type: Literal["invocation_type"]: "invocation_type"` field to the invocation.
Category is a new invocation metadata, but it is not used by the frontend just yet.
- `@invocation()` decorator for invocations
```py
@invocation(
"sdxl_compel_prompt",
title="SDXL Prompt",
tags=["sdxl", "compel", "prompt"],
category="conditioning",
)
class SDXLCompelPromptInvocation(BaseInvocation, SDXLPromptInvocationBase):
...
```
- `@invocation_output()` decorator for invocation outputs
```py
@invocation_output("clip_skip_output")
class ClipSkipInvocationOutput(BaseInvocationOutput):
...
```
- update invocation docs
- add category to decorator
- regen frontend types
2023-08-30 18:35:12 +10:00
Kent Keirsey
dc581350e6
Merge branch 'main' into sammyf-patch-1-1
2023-08-26 08:46:38 -04:00
Gille
64c5b20ce3
Update communityNodes.md
...
discarded commits, resynced, added Load Video Frames to the community nodes. Hopefully I can start to understand github soon... sigh...
2023-08-25 23:43:57 -04:00
Kent Keirsey
8a79798fa6
Merge branch 'main' into sammyf-patch-1-1
2023-08-25 20:40:34 -04:00
Kent Keirsey
9c13f1b0fd
Merge branch 'main' into feat/dev_reload
2023-08-25 17:06:58 -04:00
Millun Atluri
7ab3d3861c
Merge branch 'main' into sammyf-patch-1-1
2023-08-26 00:48:05 +10:00
sammyf
8e90468637
Node for Oobabooga, Update communityNodes.md
...
third try should be the right try. Now with link
2023-08-25 16:22:50 +02:00
mickr777
f67bbadf83
Add to communityNodes.md
2023-08-25 08:43:05 -04:00
Ar7ific1al
e2942b9b8d
Add Retroize Nodes to Community Nodes
2023-08-25 08:41:49 -04:00
sammyf
ac942a2034
Update communityNodes.md
...
Added a node to prompt Oobabooga Text-Generation-Webui
2023-08-25 10:55:52 +02:00
Millun Atluri
4ee65d179c
3.1 Documentation Updates ( #4318 )
...
* Updating Nodes documentation
* Restructured nodes docs
* Comfy to Invoke Overview
* Corrections to Comfy -> Invoke Mappings
* Adding GA4 to docs
* Hiding CLI status
* Node doc updates
* File path updates
* Updates based on lstein's feedback
* Fix broken links
* Fix broken links
* Update comfy to invoke nodes list
* Updated prompts documenation
* Fix formatting
2023-08-25 11:59:46 +10:00
Kevin Turner
98dcc8d8b3
Merge remote-tracking branch 'origin/main' into feat/dev_reload
2023-08-22 18:18:16 -07:00
Kevin Turner
76750b0121
doc(development): add section on hot reloading with --dev_reload
2023-08-21 16:45:39 -07:00
Kevin Turner
3039f92e69
doc(development): small updates to backend development intro
2023-08-21 16:38:47 -07:00