
CyberHarem
community
AI & ML interests
Anime Bishojo. This organization is only for waifus' datasets and loras
CyberHarem's activity

ameerazam08
posted
an
update
about 1 month ago
Post
4256
I have just released a new blogpost about kv caching and its role in inference speedup 🚀
🔗 https://huggingface.co./blog/not-lain/kv-caching/
some takeaways :
🔗 https://huggingface.co./blog/not-lain/kv-caching/
some takeaways :
Post
1649
we now have more than 2000 public AI models using ModelHubMixin🤗
Post
4022
Published a new blogpost 📖
In this blogpost I have gone through the transformers' architecture emphasizing how shapes propagate throughout each layer.
🔗 https://huggingface.co./blog/not-lain/tensor-dims
some interesting takeaways :
In this blogpost I have gone through the transformers' architecture emphasizing how shapes propagate throughout each layer.
🔗 https://huggingface.co./blog/not-lain/tensor-dims
some interesting takeaways :

Lewdiculous
posted
an
update
3 months ago
Post
8330
Hello fellow LLMers, just a quick notice that some of my activity will be moved into the AetherArchitectural Commuity and split with
@Aetherarchio
.
[here] https://huggingface.co./AetherArchitectural
All activity should be visible in the left side of my profile.
[here] https://huggingface.co./AetherArchitectural
All activity should be visible in the left side of my profile.
Post
1977
Welcome back,
Small Language Models Enthusiasts and GPU Poor oss enjoyers lets connect.
Just created an organization which main target is to have fun with smaller models tuneable on consumer range GPUs, feel free to join and lets have some fun, much love ;3
https://huggingface.co./SmolTuners
Small Language Models Enthusiasts and GPU Poor oss enjoyers lets connect.
Just created an organization which main target is to have fun with smaller models tuneable on consumer range GPUs, feel free to join and lets have some fun, much love ;3
https://huggingface.co./SmolTuners
Post
1819
great blogpost! 🔥@wolfram
https://huggingface.co./blog/wolfram/llm-comparison-test-2024-12-04
https://huggingface.co./blog/wolfram/llm-comparison-test-2024-12-04
Post
2323
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 🛠️:
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="")

narugo
updated
3
models
7 months ago

narugo
updated
a
dataset
7 months ago

narugo
updated
a
model
7 months ago

narugo
updated
3
datasets
7 months ago
Post
1360
@Blane187
could you please modify the title of your blogpost? content is cool, title could be nicer imo https://huggingface.co./blog/Blane187/wtf-is-rvc
Post
6870
🔥 New state of the art model for background removal is out
🤗 You can try the model at ZhengPeng7/BiRefNet
📈 model shows impressive results outperforming briaai/RMBG-1.4
🚀 you can try out the model in: ZhengPeng7/BiRefNet_demo
📃paper: Bilateral Reference for High-Resolution Dichotomous Image Segmentation (2401.03407)
🤗 You can try the model at ZhengPeng7/BiRefNet
📈 model shows impressive results outperforming briaai/RMBG-1.4
🚀 you can try out the model in: ZhengPeng7/BiRefNet_demo
📃paper: Bilateral Reference for High-Resolution Dichotomous Image Segmentation (2401.03407)

narugo
updated
a
model
7 months ago