Stable Diffusion Community (Unofficial, Non-profit)

community

AI & ML interests

Enhance and upgrade SD-models

sd-community's activity

AtAndDevΒ 
posted an update 6 days ago
view post
Post
2345
@nroggendorff is that you sama?
  • 2 replies
Β·
eienmojikiΒ 
posted an update 14 days ago
view post
Post
2033
πŸͺ„ LayerDiffuse - Flux Version (Demo) πŸͺ„

LayerDiffuse - Transparent Image Layer Diffusion using Latent Transparency

Demo: eienmojiki/Flux-LayerDiffuse
  • 3 replies
Β·
ameerazam08Β 
posted an update 22 days ago
not-lainΒ 
posted an update 23 days ago
AtAndDevΒ 
posted an update 24 days ago
view post
Post
1870
everywhere i go i see his face
AtAndDevΒ 
posted an update about 1 month ago
view post
Post
524
Deepseek gang on fire fr fr
AtAndDevΒ 
posted an update about 1 month ago
view post
Post
1608
R1 is out! And with a lot of other R1 releated models...
not-lainΒ 
posted an update about 1 month ago
view post
Post
1616
we now have more than 2000 public AI models using ModelHubMixinπŸ€—
not-lainΒ 
posted an update about 1 month ago
1aurentΒ 
posted an update about 2 months ago
ehristoforuΒ 
posted an update 2 months ago
view post
Post
3379
βœ’οΈ Ultraset - all-in-one dataset for SFT training in Alpaca format.
fluently-sets/ultraset

❓ Ultraset is a comprehensive dataset for training Large Language Models (LLMs) using the SFT (instruction-based Fine-Tuning) method. This dataset consists of over 785 thousand entries in eight languages, including English, Russian, French, Italian, Spanish, German, Chinese, and Korean.

🀯 Ultraset solves the problem faced by users when selecting an appropriate dataset for LLM training. It combines various types of data required to enhance the model's skills in areas such as text writing and editing, mathematics, coding, biology, medicine, finance, and multilingualism.

πŸ€— For effective use of the dataset, it is recommended to utilize only the "instruction," "input," and "output" columns and train the model for 1-3 epochs. The dataset does not include DPO or Instruct data, making it suitable for training various types of LLM models.

❇️ Ultraset is an excellent tool to improve your language model's skills in diverse knowledge areas.
AtAndDevΒ 
posted an update 2 months ago
view post
Post
462
@s3nh Hey man check your discord! Got some news.
  • 4 replies
Β·
not-lainΒ 
posted an update 3 months ago
view post
Post
2316
ever wondered how you can make an API call to a visual-question-answering model without sending an image url πŸ‘€

you can do that by converting your local image to base64 and sending it to the API.

recently I made some changes to my library "loadimg" that allows you to make converting images to base64 a breeze.
πŸ”— https://github.com/not-lain/loadimg

API request example πŸ› οΈ:
from loadimg import load_img
from huggingface_hub import InferenceClient

# or load a local image
my_b64_img = load_img(imgPath_url_pillow_or_numpy ,output_type="base64" ) 

client = InferenceClient(api_key="hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")

messages = [
	{
		"role": "user",
		"content": [
			{
				"type": "text",
				"text": "Describe this image in one sentence."
			},
			{
				"type": "image_url",
				"image_url": {
					"url": my_b64_img # base64 allows using images without uploading them to the web
				}
			}
		]
	}
]

stream = client.chat.completions.create(
    model="meta-llama/Llama-3.2-11B-Vision-Instruct", 
	messages=messages, 
	max_tokens=500,
	stream=True
)

for chunk in stream:
    print(chunk.choices[0].delta.content, end="")
KingNishΒ 
posted an update 5 months ago
KingNishΒ 
posted an update 5 months ago
view post
Post
8249
Exciting news! Introducing super-fast AI video assistant, currently in beta. With a minimum latency of under 500ms and an average latency of just 600ms.

DEMO LINK:
KingNish/Live-Video-Chat
  • 1 reply
Β·
KingNishΒ 
posted an update 5 months ago