2341 Commits (628f0b8ebc2c9a51205e5e5a9973f8db348a310f)
 

Author SHA1 Message Date
comfyanonymous 628f0b8ebc Move audio nodes out of _for_testing. 8 months ago
comfyanonymous 2dc84d1444 Add a way to set the timestep multiplier in the flow sampling. 8 months ago
comfyanonymous ff63893d10 Support other types of T5 models. 8 months ago
comfyanonymous 4040491149 Better T5xxl detection. 8 months ago
comfyanonymous b8e58a9394 Cleanup T5 code a bit. 8 months ago
comfyanonymous 80c4590998 Allow specifying the padding token for the tokenizer. 8 months ago
comfyanonymous ce649d61c0 Allow zeroing out of embeds with unused attention mask. 8 months ago
comfyanonymous b4c2d03d47 Remove duplicate import. 8 months ago
comfyanonymous 1dc87df4c5 Readme changes. 8 months ago
comfyanonymous cedbc94cc0 Forgot this in last commit. 8 months ago
comfyanonymous bd2d3e27d7 Show comfy_extras warning at the end.
Remove code.
8 months ago
comfyanonymous 720b17442d Temporary revert. 8 months ago
Chenlei Hu 0e3dfd9e34
Use relative path for custom/extra node module name (#3944)
* Fix module name for comfy extra nodes

* Use module name relative to root dir
8 months ago
comfyanonymous 739b76630e Remove useless code. 8 months ago
bymyself 24b969d3da
Skip state check hook on first load (#3915) 8 months ago
Chenlei Hu 086ac75228
3.8 Compatible type annotation (#3938) 8 months ago
comfyanonymous d7484ef30c Support loading checkpoints with the UNETLoader node. 8 months ago
comfyanonymous 537f35c7bc Don't update dict if contiguous. 8 months ago
Alex "mcmonkey" Goodwin 3f46362d22
fix non-contiguous tensor saving (from channels-last) (#3932) 8 months ago
comfyanonymous 01991f72ce Fix SamplerEulerCFGpp node. 8 months ago
comfyanonymous 2f03201690 Remove some empty lines. 8 months ago
shawnington 52aaee251f
Fix to #3465. Prevent, resaving of duplicate images if overwrite not specified (#3472)
* Fix to #3465. Prevent the, resaving of duplicate images if overwrite not specified

This is a fix to #3465 

Adds function compare_image_hash to do a sha256 hash comparison between an uploaded image and existing images with matching file names. 

This changes the behavior so that only images having the same filename that are actually different are saved to input, existing images are instead now opened instead of resaved with increment. 

Currently, exact duplicates with the same filename are resave saved with an incremented filename in the format:

<filename> (n).ext 

with the code: 

```
while os.path.exists(filepath): 
                        filename = f"{split[0]} ({i}){split[1]}"
                        filepath = os.path.join(full_output_folder, filename)
                        i += 1
```

This commit changes this to: 

```
while os.path.exists(filepath): 
                        if compare_image_hash(filepath, image):
                            image_is_duplicate = True
                            break
                        filename = f"{split[0]} ({i}){split[1]}"
                        filepath = os.path.join(full_output_folder, filename)
                        i += 1
```

a check for if image_is_duplicate = False is done before saving the file. 

Currently, if you load the same image of a cat named cat.jpg into the LoadImage node 3 times, you will get 3 new files in your input folder with incremented file names.

With this change, you will now only have the single copy of cat.jpg, that will be re-opened instead of re-saved. 

However if you load 3 different images of cats named cat.jpg, you will get the expected behavior of having:
cat.jpg
cat (1).jpg
cat (2).jpg

This saves space and clutter. After checking my own input folder, I have 800+ images that are duplicates that were resaved with incremented file names amounting to more than 5GB of duplicated data.

* fixed typo in expression
8 months ago
Bob Du 1ef66b0955
Add example for how to add custom API routes (#3597) 8 months ago
Chenlei Hu 9dd549e253
Add `--no-custom-node` cmd flag (#3903)
* Add --no-custom-node cmd flag

* nit
8 months ago
Peter Crabtree b82d67d5bf
Add SamplerEulerAncestralCFG++ custom sampler node (#3901)
(for eta and s_noise)
8 months ago
Hayden Reeve 755c48d78e
Fix several typos in example_node.py.example (#3204)
This change includes corrections for several spelling errors in the
documentation of example_node.py.example file.

These were previously raised by #3157, but they missed a few.
8 months ago
comfyanonymous 5dccfefe8d Switch nightly pytorch standalone package to lzma2. 8 months ago
YAN Wenkun 0cd4a6a5e5
Fine-tuning GitHub Actions (#3169)
* Bumping GitHub Actions versions

* Using LZMA2 for 7zip compression in Windows packaging
8 months ago
Robin Huang 601b4b63e1
Add CONTRIBUTING.md (#3910)
* Create CONTRIBUTING.md

* Add feature-request channel link.

* Remove discord links for channels.
8 months ago
ruucm e53b1592ba
enable cmd shortcuts for mac (mute & bypass) (#3792) 8 months ago
Chenlei Hu 7c5fa7f4a2
Fix loadGraphData func call (#3918) 8 months ago
comfyanonymous 521421f53e Fix workflow not importing from flac files on some systems. 8 months ago
comfyanonymous dbb7dd3b5e Add to readme that Stable Audio is supported. 8 months ago
comfyanonymous 05e831697a Switch to the real cfg++ method in the samplers.
The old _pp ones will be updated automatically to the regular ones with 2x
the cfg.

My fault for not checking what the "_pp" samplers actually did.
8 months ago
comfyanonymous fbb7a1f1b6 PreviewAudio node. 8 months ago
Robin Huang c39cf7fff0
Revert "Add integration test for Linux with Nvidia GPU. #3884 (#3895)" (#3905)
This reverts commit 449bf52923.
8 months ago
Robin Huang 02cac1d487
Revert "Add macOs integration test for default workflow. (#3898)" (#3904)
This reverts commit 97b409cd48.
8 months ago
comfyanonymous 7ecb2ec169 Audio second setting in EmptyLatentAudio. 8 months ago
pythongosssss 0d9009c96e
New menu/workflows fixes (#3900)
* Fix auto queue

* Detect added nodes via search

* Fix loading workflows

* Add button click style
8 months ago
comfyanonymous 264caca20e ControlNetApplySD3 node can now be used to use SD3 controlnets. 8 months ago
comfyanonymous f8f7568d03 Basic SD3 controlnet implementation.
Still missing the node to properly use it.
8 months ago
comfyanonymous 66aaa14001 Controlnet refactor. 8 months ago
Robin Huang 97b409cd48
Add macOs integration test for default workflow. (#3898) 8 months ago
Robin Huang 449bf52923
Add integration test for Linux with Nvidia GPU. #3884 (#3895)
* Add linux integration test.

* Fix directory path.

* Add paths ignore.

* Fix conda env directory path.
8 months ago
comfyanonymous 8ceb5a02a3 Support saving stable audio checkpoint that can be loaded back. 8 months ago
Chenlei Hu 5ff3d4eb3a
Fix audio upload when no audio in input dir (#3891) 8 months ago
comfyanonymous 4f9d2b057c Remove print. 8 months ago
comfyanonymous 4650e7d6e9 Save and load workflow from the flac files output by SaveAudio. 8 months ago
Chenlei Hu 3b423afcca
Add audio widget (#3863)
* Add audio widget

* Fix audio bugs

* Add CSS

* Populate audio widget when load history
8 months ago
comfyanonymous 44947e7ad4 Add DEIS order 3 sampler.
Order 4 seems to give bad results.
8 months ago