Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fofr/cog-face-to-sticker
face-to-sticker
https://github.com/fofr/cog-face-to-sticker
ai comfyui generative-ai replicate text-to-image
Last synced: 12 days ago
JSON representation
face-to-sticker
- Host: GitHub
- URL: https://github.com/fofr/cog-face-to-sticker
- Owner: fofr
- License: other
- Created: 2024-02-28T14:28:12.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-01T11:39:21.000Z (9 months ago)
- Last Synced: 2024-10-14T00:55:06.781Z (about 1 month ago)
- Topics: ai, comfyui, generative-ai, replicate, text-to-image
- Language: Python
- Homepage: https://replicate.com/fofr/face-to-sticker
- Size: 72.3 KB
- Stars: 624
- Watchers: 8
- Forks: 63
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# face-to-sticker
Turn any face into a sticker.
Run this model on Replicate:
https://replicate.com/fofr/face-to-sticker
Or run it in ComfyUI:
https://github.com/fofr/cog-face-to-sticker/blob/main/face-to-sticker-ui.json
You’ll need these custom nodes:
- [ComfyUI BRIA AI RMBG](https://github.com/ZHO-ZHO-ZHO/ComfyUI-BRIA_AI-RMBG/tree/44a3f8f)
- [ComfyUI Controlnet Aux](https://github.com/Fannovel16/comfyui_controlnet_aux/tree/6d6f63c)
- [ComfyUI InstantID](https://github.com/cubiq/ComfyUI_InstantID/tree/0fcf494)
- [ComfyUI IPAdapter Plus](https://github.com/cubiq/ComfyUI_IPAdapter_plus/tree/4e898fe)
- [ComfyUI UltimateSDUpscale](https://github.com/ssitu/ComfyUI_UltimateSDUpscale/tree/bcefc5b)
- [Efficiency Nodes ComfyUI](https://github.com/jags111/efficiency-nodes-comfyui/tree/1ac5f18)![Arnold](https://replicate.delivery/pbxt/RZzqVdLsqSZgHtEefD00iMK8VuDif6iVmXlSbNeiAShPuHtJB/ComfyUI_00002_.png)
## Developing locally
Clone this repository:
```sh
git clone --recurse-submodules https://github.com/fofr/cog-face-to-sticker.git
```Run the [following script](https://github.com/fofr/cog-comfyui/blob/main/scripts/clone_plugins.sh) to install all the custom nodes:
```sh
./scripts/clone_plugins.sh
```### Running the Web UI from your Cog container
1. **GPU Machine**: Start the Cog container and expose port 8188:
```sh
sudo cog run -p 8188 bash
```
Running this command starts up the Cog container and let's you access it2. **Inside Cog Container**: Now that we have access to the Cog container, we start the server, binding to all network interfaces:
```sh
cd ComfyUI/
python main.py --listen 0.0.0.0
```3. **Local Machine**: Access the server using the GPU machine's IP and the exposed port (8188):
`http://:8188`When you goto `http://:8188` you'll see the classic ComfyUI web form!