Literally Me FRFR Research Society

community

AI & ML interests

Being Ryan Gosling, being Patrick Bateman, watching Blade Runner 2049 (2017) on repeat, rewatching American Psycho (2000), watching Barbie (2023). Get Kenergetic!

Recent Activity

LMFResearchSociety's activity

KorakoeΒ 
posted an update 8 months ago
not-lainΒ 
posted an update 8 months ago
view post
Post
2104
It is with great pleasure I inform you that huggingface's ModelHubMixin reached 200+ models on the hub πŸ₯³

ModelHubMixin is a class developed by HF to integrate AI models with the hub with ease and it comes with 3 methods :
* save_pretrained
* from_pretrained
* push_to_hub

Shoutout to @nielsr , @Wauplin and everyone else on HF for their awesome work πŸ€—

If you are not familiar with ModelHubMixin and you are looking for extra resources you might consider :
* docs: https://huggingface.co/docs/huggingface_hub/main/en/package_reference/mixins
πŸ”—blog about training models with the trainer API and using ModelHubMixin: https://huggingface.co/blog/not-lain/trainer-api-and-mixin-classes
πŸ”—GitHub repo with pip integration: https://github.com/not-lain/PyTorchModelHubMixin-template
πŸ”—basic guide: https://huggingface.co/posts/not-lain/884273241241808
not-lainΒ 
posted an update 9 months ago
view post
Post
1940
I will be delivering an introductory coding session this Sunday 7Pm gmt+1 time about huggingface, if you are new to HF and don't know where to begin, you are welcome to join us πŸ€—
πŸ“ŒPlace: huggingface discord server
πŸ”—Link : https://discord.gg/hugging-face-879548962464493619?event=1245406127668203541
  • 2 replies
Β·
not-lainΒ 
posted an update 9 months ago
view post
Post
1547
If you're a researcher or developing your own model πŸ‘€ you might need to take a look at huggingface's ModelHubMixin classes.
They are used to seamlessly integrate your AI model with huggingface and to save/ load your model easily πŸš€

1️⃣ make sure you're using the appropriate library version
pip install -qU "huggingface_hub>=0.22"

2️⃣ inherit from the appropriate class
from huggingface_hub import PyTorchModelHubMixin
from torch import nn

class MyModel(nn.Module,PyTorchModelHubMixin):
  def __init__(self, a, b):
    super().__init__()
    self.layer = nn.Linear(a,b)
  def forward(self,inputs):
    return self.layer(inputs)

first_model = MyModel(3,1)

4️⃣ push the model to the hub (or use save_pretrained method to save locally)
first_model.push_to_hub("not-lain/test")

5️⃣ Load and initialize the model from the hub using the original class
pretrained_model = MyModel.from_pretrained("not-lain/test")

not-lainΒ 
posted an update 9 months ago
view post
Post
1139
I'm looking for open-source image embedding models for RAG applications and/or multimodel embedding models if they exist in the first place.

if you have any extra resources about using, creating, or finetuning them feel free to share them below πŸ€—
not-lainΒ 
posted an update 9 months ago
view post
Post
1233
πŸ₯³celebrating 5K readers in one of my blog posts πŸ₯³
I came back with another one this time πŸ€“
in this blog you will learn πŸ“– :
* How to train custom AI models with the trainer API πŸš€
* integrate your AI models with HF using the mixin classes πŸ”₯

happy reading everyone πŸ€—
πŸ”—link: https://huggingface.co/blog/not-lain/trainer-api-and-mixin-classes
  • 2 replies
Β·
not-lainΒ 
posted an update 10 months ago
not-lainΒ 
posted an update 10 months ago
view post
Post
1789
πŸš€ just reached 3K+ readers on this blog post about RAG using only HFπŸ€— related tools in just a little over 1 week from publishing.

πŸ“ƒthe most interesting thing about it is that you can use the FAISS index in the datasets library to retrieve your most similar documents.

πŸ”—https://huggingface.co/blog/not-lain/rag-chatbot-using-llama3

Happy reading everyone ✨
ameerazam08Β 
posted an update 10 months ago
view post
Post
4668
Explore the Latest Top Papers with Papers Leaderboard!
We are excited to introduce a new way to explore the most impactful research papers: Papers Leaderboard! This feature allows you to easily find the most talked-about papers across a variety of fields.
Hf-demo : ameerazam08/Paper-LeaderBoard
Happy weekends!
not-lainΒ 
posted an update 10 months ago
view post
Post
2298
πŸ”₯ **transformers** 4.40.0 is out πŸ”₯

βš™οΈ you can now push your custom pipelines easily to πŸ€—, allowing people to easily use your model in a more friendly, unified way.

πŸ€“ I already updated my blog to match the new feature https://huggingface.co/blog/not-lain/custom-architectures-with-huggingface.

πŸ“ƒA list of some repos that have custom pipelines :
* briaai/RMBG-1.4
* p1atdev/siglip-tagger-test-3
* sgugger/test-dynamic-pipeline