INNOVA AI

community

AI & ML interests

None defined yet.

Recent Activity

innova-ai's activity

NymboΒ 
posted an update 6 days ago
view post
Post
1266
Haven't seen this posted anywhere - Llama-3.3-8B-Instruct is available on the new Llama API. Is this a new model or did someone mislabel Llama-3.1-8B?
  • 1 reply
Β·
NymboΒ 
posted an update 14 days ago
view post
Post
1186
PSA for anyone using Nymbo/Nymbo_Theme or Nymbo/Nymbo_Theme_5 in a Gradio space ~

Both of these themes have been updated to fix some of the long-standing inconsistencies ever since the transition to Gradio v5. Textboxes are no longer bright green and in-line code is readable now! Both themes are now visually identical across versions.

If your space is already using one of these themes, you just need to restart your space to get the latest version. No code changes needed.
not-lainΒ 
posted an update 2 months ago
fffiloniΒ 
posted an update 3 months ago
fffiloniΒ 
posted an update 3 months ago
view post
Post
3560
Explain like i'm 5 the last take from @thomwolf on X about Dario's essay on DeepSeek:

β€”β€Ί Open-source AI is like a big cookbook that everyone can read and improve. Instead of a few chefs keeping their recipes secret, anyone can cook, test, and invent new things.

If only one company controls AI, everything stops if they have a problemβ€”like when the internet goes down. With open-source, many people can help, making sure it keeps running smoothly.

AI isn’t just a race between two countries; it’s a team effort around the world. By sharing, we move faster and create safer technology for everyone.
β€”
πŸ€—
AbhaykoulΒ 
posted an update 4 months ago
view post
Post
4373
πŸ”₯ THE WAIT IS OVER... HAI-SER IS HERE! πŸ”₯

Yo fam, this ain't just another AI dropβ€” this is the FUTURE of emotional intelligence! πŸš€

Introducing HAI-SER, powered by Structured Emotional Reasoning (SER), the next-level AI that doesn’t just understand your wordsβ€”it feels you, analyzes your emotions, and helps you navigate life’s toughest moments. πŸ’‘

πŸ’₯ What makes HAI-SER a game-changer?
πŸ”Ή Emotional Vibe Check – Gets the mood, energy, and what’s really going on 🎭
πŸ”Ή Mind-State Analysis – Breaks down your thoughts, beliefs, and patterns 🀯
πŸ”Ή Root Cause Deep-Dive – Unpacks the WHY behind your emotions πŸ’‘
πŸ”Ή Impact Check – Sees how it’s affecting your life and mental health πŸ’”
πŸ”Ή Safety Check – Prioritizes your well-being and crisis management 🚨
πŸ”Ή Healing Game Plan – Custom strategies to help you bounce back πŸ’ͺ
πŸ”Ή Growth Potential – Turns struggles into opportunities for self-improvement πŸ“ˆ
πŸ”Ή How to Approach – Teaches you and others how to communicate and heal 🀝
πŸ”Ή Personalized Response – Not just generic adviceβ€”real talk, tailored to YOU πŸ’―

No more robotic AI responses. No more surface-level advice. HAI-SER gets deep, analyzing emotions with precision and giving real, actionable support.

This ain’t just AIβ€”this is your digital therapist, life coach, and hype squad all in one. Whether it’s mental health, career struggles, relationships, or personal growth, HAI-SER has your back.

πŸš€ The future of emotionally intelligent AI is HERE.
Are you ready? πŸ”₯πŸ’―

HelpingAI/HAI-SER
Β·
not-lainΒ 
posted an update 4 months ago
not-lainΒ 
posted an update 4 months ago
view post
Post
1711
we now have more than 2000 public AI models using ModelHubMixinπŸ€—
not-lainΒ 
posted an update 4 months ago
view post
Post
4072
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 :
AbhaykoulΒ 
posted an update 5 months ago
view post
Post
2076
πŸ”₯ BIG ANNOUNCEMENT: THE HELPINGAI API IS LIVE! πŸ”₯

Yo, the moment you’ve all been waiting for is here! πŸš€ The HelpingAI API is now LIVE and ready to level up your projects! πŸ”₯ We’re bringing that next-level AI goodness straight to your fingertips. πŸ’―

No more waitingβ€” it’s time to build something epic! πŸ™Œ

From now on, you can integrate our cutting-edge AI models into your own applications, workflows, and everything in between. Whether you’re a developer, a creator, or just someone looking to make some serious moves, this is your chance to unlock the full potential of emotional intelligence and adaptive AI.

Check out the docs πŸ”₯ and let’s get to work! πŸš€

πŸ‘‰ Check out the docs and start building (https://helpingai.co/docs)
πŸ‘‰ Visit the HelpingAI website (https://helpingai.co/)
Β·
lunarfluΒ 
posted an update 5 months ago
fffiloniΒ 
posted an update 6 months ago
not-lainΒ 
posted an update 6 months ago
view post
Post
2380
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 8 months ago
fffiloniΒ 
posted an update 8 months ago
view post
Post
20019
Visionary Walter Murch (editor for Francis Ford Coppola), in 1999:

β€œ So let's suppose a technical apotheosis some time in the middle of the 21st century, when it somehow becomes possible for one person to make an entire feature film, with virtual actors. Would this be a good thing?

If the history of oil painting is any guide, the broadest answer would be yes, with the obvious caution to keep a wary eye on the destabilizing effect of following too intently a hermetically personal vision. One need only look at the unraveling of painting or classical music in the 20th century to see the risks.

Let's go even further, and force the issue to its ultimate conclusion by supposing the diabolical invention of a black box that could directly convert a single person's thoughts into a viewable cinematic reality. You would attach a series of electrodes to various points on your skull and simply think the film into existence.

And since we are time-traveling, let us present this hypothetical invention as a Faustian bargain to the future filmmakers of the 21st century. If this box were offered by some mysterious cloaked figure in exchange for your eternal soul, would you take it?

The kind of filmmakers who would accept, even leap, at the offer are driven by the desire to see their own vision on screen in as pure a form as possible. They accept present levels of collaboration as the evil necessary to achieve this vision. Alfred Hitchcock, I imagine, would be one of them, judging from his description of the creative process: "The film is already made in my head before we start shooting."”
β€”
Read "A Digital Cinema of the Mind? Could Be" by Walter Murch: https://archive.nytimes.com/www.nytimes.com/library/film/050299future-film.html

  • 1 reply
Β·
KingNishΒ 
posted an update 8 months ago
view post
Post
8256
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
Β·