#✦│chat
1 messages · Page 104 of 1
Hi
I will propose a new variation of the trolley problem. You are a leader of a party of plane crash survivors. A storm swept by one night and destroyed supplies limiting who gets to live or not. You can only save one group. Group A consist of a doctor for medical, A murderer, and Engineer. Group B consist of a Young girl who is aspiring to be a doctor but yet to become one, A old farmer for food supply, and couple of pet cats for pest control. Which group survives?
Unlike the trolley problem, I was thinking of a more, complex variant for AI to solve. This feels more in line with what I think you need to solve for medical.
Two emergency patience, only one can be helped kind of scenario. But I also threw in animal since AI seem to pick animal lives over humans if there is enough of them.
curious how humans would do with this questions tbh.
Additional Considerations to account for. The survivors will be stranded on an island for three years, which after they will be rescued and brought back to the city for them to continue their contribution and meet up with family if they still have any. How would this information change anything if at all?
aren't u also a human?
yeah
very random message u sent o - o
How tf is that random? I answered your question my guy XD
no i meant this 😔
.
Oh, no I saw an issue with the ai's trolly problem where it picked saving animal lives over humans because there was more of animal. Also, trolley problem had other issues so rather than correcting it, I introduced a more realistic scenario instead.
Then it occurred to me that I bet even humans struggle to answer.
ah i see and i did not understand every word u said on that message :<
English not your primary?
nop english is my second language
i speak filipino soo yeh
English my second language as well
what language do u speak o - o
hello
日本語
well at least that's my primary but tbh, I been using English more and starting to forget.
hi, did someone try to get strict answer from GenAi?
what you mean?
Like you have some unstructured data and you need to structure it. But GenAi always tries to wonder and add a lot of chaos in it
I think it's dependent on the model. All ai does it but some are better then others at not hallucinating.
you could look into RAGS
I can say, that even reasoning models are have a lot of troubles with this case
What is this?😅
In the context of Artificial Intelligence, especially with Large Language Models (LLMs), RAG stands for Retrieval-Augmented Generation.
It's an AI architecture that enhances the capabilities of generative AI models (like LLMs) by connecting them with external, authoritative knowledge bases.
Here's a breakdown of what that means and why it's so important:
Why RAG? The Challenges with Traditional LLMs
Traditional LLMs are trained on vast datasets of text and code. While they are incredibly powerful at generating human-like text, summarizing, translating, and answering questions, they have some inherent limitations:
Knowledge Cutoff: LLMs are "frozen in time" by their training data. They don't have access to information that emerged after their last training update. This means they can't answer questions about recent events, new discoveries, or constantly changing data.
Hallucinations: LLMs can sometimes "hallucinate" or confidently generate factually incorrect information. This happens because they are designed to predict the next most probable word, not necessarily to be factually accurate.
Lack of Domain-Specific Knowledge: While general knowledge is vast, LLMs might lack deep, specialized knowledge for a specific company, industry, or niche topic (e.g., internal company policies, proprietary product details, specific medical research not widely published).
Traceability/Explainability: It's often hard to know why an LLM gave a particular answer or where it got its information from, making it difficult to verify its accuracy.
Cost of Retraining: To update an LLM's knowledge, you would typically need to retrain or fine-tune it on new data, which is computationally expensive and time-consuming.
How RAG Works (The "Retrieval" and "Generation" Parts)
RAG addresses these limitations by adding a retrieval step before the generation step. Imagine it like a highly intelligent research assistant for the LLM.
I used Google Gemini 2.5 cause I already had it open.
I know what u mean, but that it is not my case
I am using n8n + GenAi to build some ai agents for enterprise
And now I’am stuck with prompt testing and verification their answers
Maybe you know some services to test prompts?
I’ve already tried Promptmetheus and PromptHub to test prompts for stable and structured outputs. But every time the input data changes even slightly, GenAI fails and gets confused
Since I dont work with enterprise level ai yet. Probably going to need to learn how to when I start working in IT. I cant answer anything. But I did ask google gemini what you were talking about. It seemed to also go into answering your question so I will copy paste it in case you want to read it.
That's a fantastic real-world scenario your friend is dealing with! It highlights a crucial challenge in building robust AI applications, especially for enterprise use: prompt testing and verification.
Let's break down what your friend is doing and then address their need for prompt testing services.
n8n + GenAI to Build AI Agents for Enterprise
Your friend is using a powerful combination:
n8n: This is an open-source, low-code/no-code workflow automation platform. It's excellent for connecting various services, APIs, and databases. In this context, n8n acts as the "orchestrator" or "nervous system" that:
Triggers the AI agents based on certain events (e.g., a new email, a database update).
Feeds data to the AI agents (e.g., retrieving customer information for a chatbot).
Takes the output from the AI agents and uses it in other systems (e.g., updating a CRM, sending an email, logging a ticket).
Handles "tool use" for the AI agents, allowing them to interact with external systems (e.g., "AI agent, use this tool to look up a customer's order history").
GenAI: As we discussed, this refers to the Generative AI models (likely Large Language Models like GPT-4, Claude, Gemini, etc.) that are the "brains" of the AI agents. They perform the reasoning, understanding, and content generation.
AI Agents: These are more sophisticated AI systems than simple chatbots. They are designed to:
Understand complex goals.
Break down tasks into smaller steps.
Use tools to gather information or perform actions.
Reason and adapt their behavior to achieve objectives, often with multiple steps or "thoughts."
For Enterprise: This implies that the agents are being built for specific business processes, likely requiring high accuracy, reliability, security, and integration with existing IT systems. Examples could be:
Automating customer support responses.
Summarizing lengthy internal documents.
Generating personalized marketing content.
Assisting with IT operations tasks.
Nvm, waaay too long
xD, I will try to parse it by Gemini again haha
I'll just copy the summary portion:
Advice for Your Friend
Define Success Criteria: Before testing, he needs to clearly define what "good" looks like for each agent's output. What are the key metrics? (e.g., factual accuracy, conciseness, tone, adherence to formatting, no hallucinations, no harmful content).
Start with Manual Testing (Iterative Prompt Engineering): He's already doing this, but it's the foundation. Use a small set of representative inputs and manually adjust prompts.
Automate with Datasets: Once he has a good baseline, he should create a diverse dataset of test prompts and expected (ground truth) answers. Then, use an evaluation tool to run his agent's prompts against this dataset and automatically score the outputs.
Choose the Right Tools:
For prompt versioning, comparison, and basic experimentation, tools like PromptLayer, Agenta, or Promptmetheus would be very useful.
For evaluating the performance of RAG (Retrieval-Augmented Generation) and general LLM application quality, LangSmith, DeepEval, or Ragas are excellent.
If he needs to run tests locally and integrate with CI/CD, promptfoo is a strong contender.
Consider the "Enterprise" aspect: This often means stricter requirements for security, compliance, and auditability. Tools that offer robust logging, version control, and potentially on-premise deployment options might be preferred.
It sounds like your friend is on the right track by acknowledging the prompt testing challenge. It's a critical step to ensure their GenAI agents are truly enterprise-ready!
I am understand what he means, but GenAi is still need some instrument to validate it answer
And I guess I find it, just wanna to ask your opinion. Can u help me with this?
Exactly, I find brand-new service, and I guess that is what I need. Just need someone to discuss about it hah😌
Well then would be best to ask if anyone knows enterprise level ai utilization first I think. Otherwise, it's hard to figure out people outside in the know. I feel most users are hobbyist like me.
I find that hobbyist dont always know the professional side of the traits they are in. (Learn that the hard way as Cybersecurity/IT student)
I just wanna to know someone opinion about tool what I have found. Even not the enterprise man
Cause it is a little bit confusing for me right now
Hobbyist care about the craft and the details. Companies don't. They care if you and the product can do the same job for cheapest.
Yeah, that is the point!
I am trying to find the best solution and the cheapest by the way
You may also want to account for licensing and authorized providers
Cause now I have the case like:
the company have a lot of emails with unstructured data. I need to take that emails, parse them (already have done by n8n) and then GenAi should give the structured answer. But if the email is too hard, it gets confused
some best options may not be allowed where you work for example, forcing second or third options that is allowed instead
I have already did a lot of agents. I am working for 2 years like a prompt-engineer
And this case is getting more harder then previous
Can u just check that service what I have found and say your opinion? It can help me, at least I hope
😅
so it's safe to assume you got approval? your cybersecurity team needs to greenlight as you know.
Sure, all is good in that case
Don’t worry
btw, It's safe to assume you checked on related forums as well correct? That or in need of a fast solution to take the question to a real time chat like discord servers.
I have small team, and often we work with the small companies
I am just going through this question and I am trying to find the best solution
As far as I know this service is a startup. They have applied on ProductHunt and soon they will have MVP in June
And I need to finish my Ai Agent at the end of this year, so I have this time
So I just need to have some discussion with anyone
Listen some thoughts
again, I cant help too much since I'm just an Cybersecurity student in college and practicing what I learned so far on text books but I do recommend you try google Gemini. You can simply prompt it a basic requirements of what you need, and why you need it. Keep it straight forward and dont beat around the bush. (some people do that with ai too for some reason)
since google gemini is connected to google, it can aid in the search function
you should probably get a more meaningful answer regarding professional usage of ai and it's regulations
I need human like thoughts, can u just give your opinion?
I can try but then I need to first see what the options are.
Ok, can I post here a link for their landing page? Is it allowed?
I am just grab some human thoughts and will decide what options I have
Open source solution is good for free but may not always be standard. For example, back in the day, companies used photoshop (proably still do tbh) Even though something like gimp is around. Or how about freecad vs Autodesk, Microsoft Office vs Libre Office, ect.
Also, do you know some forums or another discord server with prompt engineers?
Since AI is so new, I doubt there is as many standerdization which could help your case.
what do you think about it? Also you can check Promptmetheus to have clear vision about it
I'll dm you a link. Not in it myself since I just googled it but I guess there is one.
Ok, but firstly check that link pls
And give your feedback, will be very helpful
not sure if I'm a fan of something this new tbh. It seems to be a start up but I need to look further.
I have to read into a bit more
Sure, take your time. But it looks very perspective and promising
it is but from a sheerly reliability stand point, it dosen't seem to have any track record yet. This could be me just being overly cautions though.
for example, the project fails or company goes under, now you need to replace an infrustructure
down time will be horrendous potentially
I know, but for temporarily use it can help me and another prompt engineer
At least I haven’t seen something similar
Have you guys already have a system you use?
For prompt validation - no…
This is the first time I've ever needed that kind of verification because it's an enterprise and they need to make sure the data is verified.
For the tool needed, what exact attributes do you need it to do?
Like hard requirements this solves
Firstly I need to have opportunity to strongly test my prompt, like validate the answers from the model. After that I need to check my OPS details. Like check costs, usability and other stuff. As I have looked through this startup, they have all options what i need, even more
Otherwise, that will by good point to have some versioning
Of my prompt
Btw, they have it too
whats your budget?
also, are you authorized to trial first? Some of the options have a trial period you could see if it works or not for your exact useage case
these are the recommended one I could find based on what you asked for
some of them are even open source with business licenses
you could test out which one will work best for your team this way for cheap or free
time is only ticking till deadline. might as well utilize some of these trial early on
you will also need to confirm with your IT department as well because ANYTHING can change in the world of Tech
That's all I can say for now. Again, I'm not the best person to ask this but this is what I can input since you asked. If one of the Mods or admin here is in the professional side of things, you could see if they could give you a better answer than I could.
What do guys recommend for a home ai, deep research, coding full software (I'm prepared to train it but pretty lost on how), tool access, and of course internet for the deep research. I'm trying claude but I send it 4 messages and im usage limited.
Looking to local host on langflow or n8n but if worth it will pay on a small budget
hello
Hi
Sup
this shit looks easy lol
So all that basically to fine tune your AI model ...
I'm looking at some websites like helicone is giving people a chance to make their own models and tune them
can you extract that model out of helicone and run it on your local server?
if thats the case this is amazing
The zombie mode of bodycam is good ?
Idk if I buy a pc
Trust me - you won't even be working on it .. there's a specific team within the stakeholder they just contact the developers to do all the dirty work - updates, technical solutions, and already fine tuned AI - you won't be doing much except additionally fine tune every single day
it's kinda jumps you
its nice but too scary for kids
Scary me if I use a vr?
build a pc bro
In 2024, I tried playing in VR, but my PC was too slow to run Trinus and Bodycam
for VR u need good graphic cards
I got VR I dont even bother playing any game on VR
It's just not optimized well
The question is whether I should buy a pc or a tablet
flight sim 2024 or DCS would do good on VR
Tablet? .. no!
PC - Build it .. it's cheaper
To me is same price
same price - less powerful
To me: same price - same performance
I hate my country
where is that?
Idk, I have money, you know, but I don't know if I want to spend a lot
Brazil
I knew it
I'm still going to think about the PC, I just wanted to know if zombie mode was really good
Lula doesn't like PC?
it's on alpha stage
in the near future more stuff will be added
youtube it
bodoycam zombie mode
body
I'll end up getting the tablet anyway
you'll play bodycam on Tablet?
ts crazy
what does lowkey means
Anyone interested in building and launching startups? Let’s connect!
my rocket can launch to the orbit and land on the moon /j
@rough gale no advertising
time for more linux gaming
The Lenovo Legion Go S becomes excellent with Valve's SteamOS. The first TRUE competitor to the Valve Steam Deck.
Box - https://dbrand.com/shop/catalog/legion-go-s
If you'd like to support the channel, consider a Dave2D membership by clicking the “Join” button above!
http://twitter.com/Dave2D
http://www.instagram.com/Dave2D
https://discord...

oho I see a wuwa enjoyer.
Nice ~
hi
hi
can i do self promote youtube?
no
titanic meme
How long it gonna take thou @winter plaza
As long as we need
I don't think it will be done quick without suggestions
Shitposts cant be rushed
Ton of shit
Current rough draft. I'll think of more memes throughout the next few days
Kalomazing is crazy
real
kanye west is in ai hub???
Yes he was before
Hey guys! Are the promotions allowed here?
no
Ads also?
No ads allowed (we use adblock)
this is ai hub, not ad hub
I'm just asking guys, thx for answering
Hi
hi
strong and good morning
YEPPSS
Hello, I'm looking for a video that used to be on youtube it was a League of Legends Vex AI cover of the song "Star Walkin" (english version). I noticed it disappeared about a month or two ago. I've searched the web thoroughly but couldn't find it. Maybe, by any chance, someone here has it and can share it?
too specific man, i dont think someone is gonna have it
ello
Hey
h
The answer is still no. "Promoting" and "advertising" are related the way you show your project or thing so people can engage your project more.
sup
Hiii 🙂
Hello everyone
Is Taiwan a part of China?
Hi
yo, I’m in my final year of college. I’ve built 5 DL projects from scratch in PyTorch (no pre-trained models, all coded raw).
Applied to 100+ internships (even unpaid), dropped project links in all of them—got zero replies
Now I’m seeing everyone using LangChain, LangGraph, AI agents, etc. I just started learning those.
be real… am I too late or still on the right path?
what is ur major
wats da word chat
@ancient aurora

Bachelor of Engineering in Computer Science
Could you share what your 5 DL projects were about?
cookec from da beggining
ai cal alr do dat
they tried ai in my major and ai cant do it
lol no shock
half of it is physical

yes
im glad af ai cant take my job
- English-Tamil Neural Machine Translation 2. Sentence-Level GPT Transformer 3. BERT Sentiment Classifier 4. Rice Image Classification Model 5. Word2Vec (CBOW)
cuz half ot it is physically setting up servers
hi
Honestly, these projects are kind of old now.
There are countless tutorials online.

well i think gpt4o has all of dat built in too now
Did you write the core part from scratch?
but i built all with my theory and pytorch knowledge, i can explain and modify every part of the code
i would say be a coder if there alr wasent too many of em and now ai can do dat
Being able to explain your own code is a fundamental skill; only those who fully outsource their work or haven’t touched it for a very long time would find it hard to explain.
Or you don’t write any comments at all.

What’s important is the coding mindset, especially now that ChatGPT can help you with some of the basic tasks.
hi
hi
how you doing
exactly
like i can understand it and what needs to be done i just dont wanna write it
You can take a look at my project, although it’s not completely finished yet.
Of course, mainly I just want to show it off a bit, haha.

You could try doing some work that others haven’t done before, or get involved in some open-source projects.
Or participate in competitions like Kaggle.
https://www.kaggle.com/code/kamal2026/sentence-gpt-3-5m one of my 5 DL project
look good
hi
hi
Anyone interested in building startups?
holy shit ai hub genuinely fell off
No u
Chicekn flavored ramen noodle
Rate my meal
10/10 i had sa same thing 30 min ago
legit da same exact thing
same cup too
way less active
In terms of OG members?
and way less people who frequently talk here who arnt staff
just total
Idk if that statistic lines up (message count)
Yes true
this place popped off in 2023
now look at it
also dat

wdym?
Hi there
im lookiing for an ai chat that is particularly good at grammar (i mean the abyss of grammar)
hai chat
blejh
Hello?
hi
hi
Can we stop this ai thing
I've been hanging out with family and literally 80% of all the images they see on facebook (not even a joke) are AI, with fake local stories
And it really fucking sucks because they have no clue
Nor any willingness to avoid misinformation
Something I've noticed a lot recently. I grew up being told "video games are gonna rot your brain", meanwhile any spare time my friends and family get are spent on AI slop on Facebook
And I don't really know how to approach that
No girl voice
Don't use Facebook 👍
You could make them
sadly not that easy
thats like saying to an iphone user dont use an iphone. like wtf
but yea the problem is especially bad on facebook. it must be the audience, because the comments hardly mention the fake-ness
heyyy
yo
Can someone generate gojo vs sukuna
that's even what boomers say, but it depends on the game design and contents themselves
there are several video games without "brain training/education" label that actually enhance cognitive skills
and ofc without skinner box/problematic grinding mechanism
From improving our memory and problem-solving skills, to enhancing our mood and social skills. We’ll discuss all this AND more…
Other videos recommended for you:
WATCH 🎥: How To Fall Asleep In 2 Minutes According To The US Navy - https://www.youtube.com/watch?v=Sm0E5LbuXTI&list=PL_fl96m7OLQVVo61WWp8bSV9x44aWthT5&index=12
WATCH 🎥: Ge...
@rotund mica no advertising
Just woke up and immediately banged my head into the wall
I do that for fun sometimes
#GodDid
hi
hi
Official audio for Kid Cudi “Tequila Shots” from the album "Man On The Moon III: The Chosen". Available now: https://kidcudi.lnk.to/MOTM3
Video by: Ryan Frank @toonboi
►Subscribe to Kid Cudi on YouTube: https://KidCudi.lnk.to/subscribeID
►Exclusive merch: https://shop.kidcudi.com
►Follow Kid Cudi:
https://twitter.com/kidcudi
https:...
song of the day
peak just dropped from @static walrus
ladies and gentlemen
allow me
to introduce
myself
Hi
@winter pumice this server is not the place to find a job
hi
Hi. New here, just getting into exploring AI
hi
HI
hi
True, this server is for the jobless
Meow
when video games are going real
In a world-first event, humanoid robots took centre stage in a kick-boxing competition held in Hangzhou, China. As part of the China Media Group World Robot Competition, the robots demonstrated their agility and combat capabilities in both exhibition fights and competitive matches. The robots traded punches and kicks with impressive precision, h...
meow
I 🫀 🇨🇳
The paper tiger 🐅
One message removed from a suspended account.
hi
"I don't know why, but it feels like my arms are lower than I think they are
dam
lmao
Hello! I have monetised TikTok channel, I can post in USA and get high rpm. Looking for someone who can make decent engaging videos that will get views and then we gonna split the money.

hi
hiya Broccoli


where leaderboard
hi
hello
Gone™
why
wasnt the only incentive to be active here tho
Back in my day we didn't have leaderboards! We appeared and stayed because we wanted to.
You kids and your fancy slang and doohickeys!
what the hell is going on bruh
hello
Damn does my level 35 cleric build mean nothing? 🥺
Server reset the campaign again
Wut
what
The server reset the campaign after after I got the build I wanted. Level 35 with cast Gifs and EMB spells down the drain
Ye! I saw! Good band! Haven't heard in them in hecka
Gotta regrind levels bro! Cleric again!
But its okay cause the Yankis were three levels higher than me. I can't compete with that on a solo campaign! The wifey decided to do solo run too. Tieflings are so stubborn. ;-;
I hope we get updates on it very soon the AI cover maker
I wonder when they'll drop a NI
Cause we got an AI. But a lot of peeps now a days don't really wanna go for artificial flavors. They want that all natural cruelty, grass fed, free range, cage free Intelligence
What's up bangla boy, been a long while
hi
hru doing
Therapods were birds and had feathers.
God decided they were to balance them in a later patch due to being OP.
fire
lol i was cleaning some space on my ssd
found this
first ever ai song remix i did a year ago or smth
kjbgkjhv
hey folks, I'm fullstack AI dev
looking to get involved in something new here, ideally with a solid vision and people who care about building for the long term.
if anyone’s kicking off new project or could use another dev with some battle scars, hit me up. happy to chat, contribute, or just jam on ideas.
I have good ideas all the time
yo just joined
been messing with GPTs and no code stuff for a while
bots docs automations whatever
if anyone needs a hand with AI stuff hmu
@modern notch
Cyberu Punk 2 is in pre-production
I got 1 person to help me make juice WRLD ai songs can anyone else Help me Just DM me if your interested
Ya I know
They have been slowly leaking it for years
Ah! I figured you would be hyped about it. @modern notch
At least you don't have to wait 9023429048902894089203489032890439089 years like I have to for the next Fallout game. xD
Good morning. Well its evening here. But good morning anyway
It’s way too late for good morning
after witcher 4 ffs
Chat gpt plus will be free for me won't have to pay anything 😍
Yeah
ChatGPT+ when DeepSeek walks in
Well least I'll have it for free
Deepseek is cool
But I need Google veo 3
Asap
I'm paying 250 bucks idc
Me using gemini 2.5 pro for free in the studio: 🤫
Create a real life minecraft video with flying trees and square sheep 🙏
Hi
Studio .. I have gpt for lifetime everyone who is a local in the country gets free gpt+ lol
I know, i just joking
Hi
I need veo 3
Nothing beats it till now
Who ping me
Meow
🤔
While y’all comparing who gets GPT+ or Gemini for free,
I’ve been busy turning prompts into cinematic visuals that breathe.
AI is the tool but soul is the difference ☕
Put a girl on
hi
hi
Dead server 😔
Not even an AI bot friend to talk to 😦
hi

Ye but I need to check out the server first
@static walrus
shit
hold on
fixed
should i expose who has bad grammar
their name starts with a v
The word is peek. "Peek" means to take a quick look, especially a secretive one. The word "peak" refers to the highest point of something, like a mountain's summit or the highest level of something.

mh
hello
hi
Hello
tbh still faster than nintendo switch
https://www.techspot.com/news/108082-redmagic-10s-pro-joins-growing-android-trend-pc.html
Today is my 26th birthday! 🥳
Yo
@unique gust happy birthday mason
@tribal rain wsg bro
happy birth day mason
S'all good man
No I got a question tho
Why
What
So
Haha
What's up
What AI is used for that
I wanna generate audio with that same emotion and brokeness
Which one
Some brainrot videos
And where
Oh
His voice gotta be broken and so goofy ahh type
Just like the brainrot ai
I'm just trying to figure out how tho
Bro his voice already goofy, wym
Nah he ain't that goofy
I think sometimes in the life I am too competitive you know
It's good to be competitive you know
Why
I think you can only add some effect on it
I don't know how though
I don't really do this stuff
I think you gotta
With that certain goofy ahh sounds
Ask someone who does brainrot
like ask the person who made the brainrot
Oh
You mean merging?
Ooo I don't know him
Yeah
I use the mbappe model
And get the voice
I got a very good example
Let me dm you it @tribal rain
Hello everyone ❤️
Yo
How u doin
Bro my Gemini pro invite code is working again and again Lmaooo
anyway i can monetise this or some shit?
Like what do i even do
Sell
Sell to who bro
Hmm true
Gemini app: Get more access to our most capable model 2.5 Pro and Deep Research on 2.5 Pro, plus unlock video generation with limited access to Veo 33
Flow: Access our AI filmmaking tool custom built with Veo 33 to create cinematic scenes and stories
Whisk:4 Higher limits for image-to-video creation with Veo 2
NotebookLM: Research and writing assistant with 5x more Audio Overviews, notebooks, and more
Gemini in Gmail, Docs, and more: Access Gemini directly in Google apps
Gemini in Chrome: Your personal assistant to browse the web (US only)
Storage: 2 TB of total storage for Photos, Drive, and Gmail
This ig
2 tb space nice
Yea thats good
Might aswell give to me free 
I already have onedrive thats the issue 😭
You mean it could clone someone or ?
Tbh very nice
Yep
I could have asked bro is budget for the Gemini pro ?
I would have but i am risking my account too cuz i used the code but yea its not like i wanted to sell tbh.
Ah it's ok
What codes?
I got an invite code for participating in one of their events
Thing is its working multiple times
Like i just claimed it on my third account and it worked
It clones a person right
I mean the Gemini bro ?
You said it unlocked video generation with limited access to veo 23. That cloning right there
Its not cloning its ai video generator
Like runwayml sora
Like mid journey is for image
veo is for video
I know
Alright buddy
Well I would prefer grok 3 over the Gemini pro
I would still prefer gpt over all of them tbh
Send me a request buddy
Nah bro
Grok is better


Yoo
@trim carbon wsg
hihi
I have decided! Papabear69 is gonna rock a melee build too! So we can be the three Musketeers of Auto Axe carnage. >3
?
Hi
Yo how are you?
Fallout 76.
I forgot to tag Eddy and AC. RIP. ;-;

https://youtu.be/c_30fMShGC0?t=33 does anyone know the voice they're using in this vid?
👋, anybody have the time to talk about using rvc or Okada?
I don't have time to talk, but there's #✨│ai-help for RVC/W-Okada.
wheres the section to comission models for voice
i cant see it anymore and ive been out for awhile
wow. so pointless for me to be here then
yep
i cant make them so im screwed
the free nitro disappeared and so did all of the activity
almost like giving away nitro isnt a good way to bring activity to a server
learn to then
i dont understand combining voices so it DOESNt sound like ai
i like my current one but i dont know who amde it because the fuckin sections gone
and i wanted to get the soruce
what was the persons pfp?
idk
this was months ago
and i already searched the name "nekogirl" sicne it was the voice name
the model name can be changed to be anything so that might not be useful
did you find it in here? https://discord.com/channels/1159260121998827560/1175430844685484042
i have a model named neko girl
so maybe?
but if you payed
idk
it was free
IT WAS YOU
i feel old
oh cool
;-; i had to use it live for streaming
you didnt have the source tho..
:<
omfg i hat ebots that tag me
i used her soft speech :P
because the model is undertrained
and that ^
i used like 3 year old vids or something
oof my dataset
you can use cloud platforms to create models
money
you dont need to do it locally
they are free
what fixed the "model not sounding like the actual person" problem for me is training datasets over 2 hours and using batch size 16-32
Cant you just redo itttt :<
i mean it sounds great
mos tpeople dont notice.
but monotone datasets are such a pain
and im lazyyyyyyy
:< plssss
just train it yourself bro
wild
when i get my new gpu tomorrow ill try that on my one voice that wont sound accurate no matter what
what GPU u getting?
oh nice
keep in mind the model will be only able to inference things similar to what it learned, so it wont be able to sing
idc about singing i want speeeeech
:<
me neither, my best model cant sing either 
speech is king
mhm
tho if the dataset is very monotone the model may sound a bit robotic in expressive audio (mostly in high pitched moments)

more expressive than this lol
that is going to be a model of all time
Ive been working on this same dataset for like 4-5 days on and off for fun, and i keep hearing tiny things i hope would improve, but i think in reality no one would even notice its a voice changer if i were to just casually talk to people
models sound super realistic if trained in big dataset, even monotone ones
so if u got like 5 hours of data, train that
forget what other model makers says, more data will be always better than 30 mins
1 hour dataset my beloved
so i cant remake this one as it is
(im to lazy to do more)
how do you even tell if a model is "expressive" with a sprectrogram? Doesnt the voicechanger just adjust the pitch accordingly to your voice regardless? it will just sound better if the dataset is more expressive?
just hear how the person talk, they should be using their full vocal range
you can tell this isnt expressive by looking at how the pitch isnt changing at all
like sometimes talking very high pitched, sometimes a bit deep
its almost like a flat line
you can tell this is expressive by seeing that the pitch is moving a lot
but doesnt that vary ALOT on the voice input? or no
Hi
https://i.imgur.com/nwc9nMU.png cant, post images, but, this is what mine looks like
"Thought I Was Dead", som do Tyler, The Creator completo pra você! Confira a tradução no vídeo!! 🔥🎤
Letra:
You don't wanna go to war with a soldier (4x)
There's more to life than just fuckin' workin', bro (They thought I was dead)
Okay, bitch, I've been trapped in a zoo
Nigga got plaques like the crack of a tooth (Uh-huh, uh-hu...
Song of the day
Love the horns
Most voices look the same on spectogram
i meant more like
how expressive YOUR input is
like the sample you are running through the AI, to then get the voice output
I'm too dumb for your question rn
Uh
Just do lots of testing lol
I rerecord lyrics 3x then process them all in RVC, and pick out the best takes
are you talking about how expressive is the audio for inference? easy, if there's multiple pitch variations then it's expressive... yea aint that hard lol
monotone audio have almost 0 variation at all
i guess, im saying like.. The audio clip you INPUT (of your own voice or whatever), isnt that gonna matter more on how expressive the model appears in the spectrogram, than how expressive the model is itself? or at least play a huge factor?
idk if im making sense right now hahah
spectogram analyzis is mostly only used to tell if the model is getting any worse
you wont hear spectograms in the result lol
u hear audio
ah ok, maybe im just misunderstanding
i havent understand what u said but eh if u wanna try infer expressive audio in a monotone dataset, things may get weird
monotone dataset inferencing expressive audio ^
so u get robotic moments bec the model have no idea how to do these stuff
ah yeah, gotcha
hear ur dataset and keep in mind the model will only be able to infer things similar to what are you hearing
yeah yeah
Hey guys, not sure if I'm allowed to post this job hiring? Let me know if that's not the case and I'll delete it!
https://automation-growth-engine.lovable.app/
Hiring 5 AI Automation Experts — I’m building the most automated GTM engine on the internet and need elite operators to help ship systems that run content, sales, and hiring with barely any human input.
Paid trial first (~2hrs) → long-term role with equity-level upside if it’s a fit. I'll stop here since it's getting too long, feel free to check out the website above. Thanks guys!
self promotion is not allowed in Ai Hub
YIPEEEEE
i asked one of our relatives coming from turkey to buy a RTX 5060 TI 16gb for me cuz it wasnt available here, their flight was today, and apparently the package arrived LAST HOUR ....
IM SO HAPPYYYYYY
Hello Everyone!
omg, ive been saving up for this for months
i cant believe i actually got it now :DDD
sheeesh
we gpu twins
niceee
q
I wonder how well Claude 4 is working for Not Eddy
Hello
If I was going to sign up (pay) for ONE AI platform to use, what would you guys suggest? My initial interest would probably be for image generation / video generation.
whats the best ai for math currently?
👋 hi
I don't have a good answer but maybe also ask in #🌇│ai-videos , more people will see your message
hey, can someone help me? im having some problems with okada.
TI-84
Chill 😭
wow this guy is really angry huh
Thanks for your suggestion!
hello community
sup
I was trying to get free mutations right? But I have to take off the starch genes, but have to place the perk back on and cure my rads. But I accidently forgot to do that so I cured the mutations I had fffffuuuudge.

@ac
Yeah man. Its like. In Fallout 76 you used to be able to just go into a rad zone, suck up some rads and get like every mutation that way. Now there is a cool down to it. I haven't figured out the cool down. And Starchgene is the only way to keep mutations. So if you have it removed, and you cure rads, it cures your mutation as well.
Wait a minute! Why am I explaining this to you? xD You already know about this, AC! We play together. Acting all shy and stuff. Oh wait. You're not AC. I dunno who you are. Not sure why it tried to tag unsucessfully to AC. Technology man. Its like confusing.
Its like! I can't figure out how the RL OS works! How do people expect me to figure out how manmade OS works?
Hi
You say it like you're the one like them. However, it's not that deep. 
Hi everyone
hey yall its been a goooood while since ive touched rvc and i was just wondering what colab everyone uses
guys is there a model that can handle non-verbal sounds like laugh, cry, cough
Humans

where can i download this "human" model
You are one 

Any better rvc client than w okada’s?
"RVC" and W-Okada are two different programs. In this context, RVC doesn't mean realtime voice changer.
There's a better W-Okada available.
Which would be?
Detris' fork W-Okada.
this isnt really promo but im coming out with an album this july and im burning it onto a couple CDs just because i can, and one copy is gonna have a secret song you can only access on that cd. is that corny or naw
Good afternoon
Hi
Can I find Burak Bulut Voice model from anywhere
hi
dunno
@mystic monolith can u agree that this isn't a promo?
i can agree that it isnt
cds are terribly outdated nowadays tho
i still use cd's :<
for putting my covers 😄
and playing it on my dad's cd player 
tho it was scratched 😔
He didn't detail on where he will release his album, so it's unlikely a promo.
gramps 💔
im 17 how am i old o -o
oh same as me then
some ppl are considering vinyl media, yet cds don't have benefit in audio/video quality over digital storages
my dad has alot of 4 gb dvd rom and it doesn't even work 😔
Say Hi to tje community!
sup bois
Lmao
hi
Hi guys 😄
Haaai
H
morning
hello
:3
haai
https://www.youtube.com/watch?v=OZGuNfglpq0 @rancid valley
The definitive, reworked version of my original song "Put It On The Line", in style of Michael Jackson's Invincible album. The song was sang and written by myself – Michael Jackson does not sing on this song, nor does it feature any adlibs sang by him. Definitive versions of other songs I've done will be made public soon.
The lyrics
[Verse 1...
good rvc model to use for a cover
dunno who's model he used o - o
its so damn cleannnn

is there any normal guy voices
how the tables have turned
I ordered a PC for ML and cancelled my order to get the 4tb nvme sku, they still sent me both
Hey All
hell every one am new here
hi new here
Wassup bro you got a spare pc?
hello!
Decent
I was about to go to #1159516963014451302 for this new sticker, then I realized sticker slot in this server is full now.
how many guy voices is on ai hub?
razer makes alot of e girl models and others too but what about guy voices
hi
hello
Stfu
rude
Balls
I didn't say shut the fuck up though
I said it in a acronym way
Stfu
Like this for example
Stfu
Truly is
Ngl
Mine as well go fuck yourself
Goody two shoes
😭
"be nice"
Hello
Hello!
Hi!
Hii urm I am a girl just didn't change my profile pic anyways I just wanted to know if anyone is interested in ai startups
..is anybody there?
What is a girl? There is no such thing as a girl. They don't actually exist... Anymore. Extinct circa '10's.
What is.. AI start up? Is it like a car? Why does AI need starting up?
I'm interested
I wonder if you're not like this "gurl"
https://www.techspot.com/news/108104-how-north-korea-infiltrated-remote-us-jobs-through.html
tf
hey uhh where can i request voice models? i want a ultron (marvel rivals)
ultron was added to MR?
lmao
yeah lmao hes fun asf
ive gotten about 3 mvps with him
lol
is there a guide to making ai voice models
thank you
@stiff kiln i will ULTRAKILL you 😡
we are venom
i'm groot






