Phind-405B and faster, high quality AI answers for everyone
111–120 of 163 posts
Re: Phind-405B and faster, high quality AI answers for everyone
#112Earlier quoted context omitted.
> As an AI assistant, I should be more careful I hate this kind of thing so much.
Absolutely. Behaviour that in normal life in clean societies would be "eliciting violence": automated hypocritical lying, apologizing in form and not in substance, making statements based on fictional value instead of truthfulness...
Re: Phind-405B and faster, high quality AI answers for everyone
#113 const MyClass& getMyClass(){....}
auto obj = getMyClass();
this makes a copy right?
And it was very confident about it not making a copy. It thinks auto will deduce the type as a const ref and not make a copy. Which is wrong, you need auto& or const auto& for that. I asked it if it is sure and it was even more confident.Here is the godbolt output https://godbolt.org/z/Mz8x74vxe . You can see the "copy" being printed. And you can also see you can call non-const methods on copied object, which implies it is a non-const type
I asked the very same question to phind and it gave the same answer https://www.phind.com/search?cache=k3l4g010kuichh9rp4dl9ikb
How come two different AIs, one was supposed to be specialized on coding, fails in such a confident way?
Re: Phind-405B and faster, high quality AI answers for everyone
#114Recently I asked an AI following question const MyClass& getMyClass(){....} auto obj = getMyClass(); this makes a copy right? And it was very confident about it not making a copy. It thinks auto will deduce the type as a const ref and not make a copy. Which is wrong, you need auto& or const auto& for that. I asked it if it is sure and it was even more confident. Here is the godbolt output https://godbolt.org/z/Mz8x74…
Re: Phind-405B and faster, high quality AI answers for everyone
#115 Bread and water for everyone
now apparently means Bread for our customers, water for everyoneRe: Phind-405B and faster, high quality AI answers for everyone
#116Earlier quoted context omitted.
These are the types of questions I want to ask it: > What degrees are held by each of the current Fortune 100 CEOs? > What job did each of the current NFL GMs hold before their current position? > Which genre would each of the current Billboard Hot 100 songs be considered part of? > How many recipients of the Presidential Medal of Freedom were born outside of the US? > Which US car company has the most models in thei…
There is a method that could help immensely when answering questions like these. E.g. some of these question may be answered quite quickly using WikiData [0] (answer to question about the recipients of Medal of Freedom, query written with the help of Claude), instead of just scraping and compiling information from potentially hundreds of websites. I believe this idea is quite under-explored compared to just blindly p…
Re: Phind-405B and faster, high quality AI answers for everyone
#117Earlier quoted context omitted.
I've been playing with Gemma locally, and I've had some success by telling it to answer "I don't know" if it doesn't know the answer, or similar escape hatches. Feels like they were trained with a gun to their heads. If I don't tell it it doesn't have to answer it'll generate nonsense in a confident voice.
The models weights are tuned towards the direction that would cause the model to best fit the training set. It turns out that this process makes it useful at producing mostly sensible predictions (generate output) for text that is not present in the training set (generalization). The reason that works is because there are a lot of patterns and redundancy in the stuff that we feed to the models and the stuff that we a…
That being said, I'm aware that the model doesn't reason in the classical sense. Yet, as I mentioned, it does give me less confabulation when I tell it it's ok not to answer.
I will note that when I've tried the same kind of prompts with Phi 3 instruct, it's way worse than Gemma. Though I'm not sure if that's just because of a weak instruction tuning or the underlying training as well, as it frequently ignores parts of my instructions.
Re: Phind-405B and faster, high quality AI answers for everyone
#118Any perplexity pro user tried Phind? how good is it? specially for code/tech research etc.
Re: Phind-405B and faster, high quality AI answers for everyone
#119Re: Phind-405B and faster, high quality AI answers for everyone
#120Recently I asked an AI following question const MyClass& getMyClass(){....} auto obj = getMyClass(); this makes a copy right? And it was very confident about it not making a copy. It thinks auto will deduce the type as a const ref and not make a copy. Which is wrong, you need auto& or const auto& for that. I asked it if it is sure and it was even more confident. Here is the godbolt output https://godbolt.org/z/Mz8x74…
```
const MyClass& getMyClass(){....}
auto obj = getMyClass();
```
Does this make a copy. Let's think step by step.
This might help you if you're trying to get these to help you more often.