Live data from Hacker News

Bard now open to use

bard.google.com

101–110 of 267 posts

Re: Bard now open to use

#103
post #54

What's the difference between you and ChatGPT? ChatGPT and I are both large language models, but there are some key differences between us. Here are a few: Training data: ChatGPT was trained on a massive dataset of text and code, while I was trained on a dataset that includes text, code, and images. This means that I am able to generate more creative and informative responses. Fine-tuning: ChatGPT was fine-tuned usin…

This is a bunch of hallucinated gibberish.

So was this, and this.

Re: Bard now open to use

#104

Hah, this isn't surprising: An internal leaked Google document ( https://news.ycombinator.com/item?id=35813322 ) a couple days ago pretty much pushed the idea. Still interesting to see the action follow so short afterwards. Three quotes from the document: - "Owning the Ecosystem: Letting Open Source Work for Us" - "Google should establish itself a leader in the open source community, taking the lead by cooperating wi…

I’m failing to see the connection between the linked doc and Bard opening up for more use?

Re: Bard now open to use

#105
post #16

> Bard isn’t currently supported in your country. Stay tuned! When Google was a startup and even a decade in they managed to treat everyone the same. Today this has went backwards like everything else Google it seems.

The problem of being a massive company is that everyone wants to sue you. They could want to sue you for money. Or maybe sue you because they think you are bad. Whatever the reason, when you're Google's size, you need to make sure you're compliant with every local regulation before you launch anything or someone may come after you. Googler, opinions are my own.

Google is the only company that does this. Even product pages are geo-dodged in a similar fashion, as if the technical specs for a Pixel phone shouldn't be readable outside of some approved areas and the user is silently redirected to an unrelated page. It's quite surprising.

Re: Bard now open to use

#106
I tried:

Question/Task: Write a lock implementation in Rust

I got this (lol):

    use std::sync::Mutex;

    struct Lock {
        mutex: Mutex,
    }

    impl Lock {
        fn new() -> Lock {
            Lock {
                 mutex: Mutex::new(()),
            }
        }

        fn lock(&self) -> MutexGuard {
            self.mutex.lock().unwrap()
        }

        fn unlock(&self) {
            self.mutex.unlock();
        }
    }

Re: Bard now open to use

#108
post #24

Just as everyone is getting tired of LLMs and realizing they're not as useful as they initially seemed

This was my response as well.

Google releases their version seemingly at the same time all of the shine is coming off of these LLM's and how many people have already fooled around with ChatGPT and have already made up their mind whether its a good thing or a bad thing.

I'm still not sure if this is something that works in Google's favor or against them considering software seems to be a "love it" or "hate it" thing nowadays without much middle ground.

Re: Bard now open to use

#109

Hah, this isn't surprising: An internal leaked Google document ( https://news.ycombinator.com/item?id=35813322 ) a couple days ago pretty much pushed the idea. Still interesting to see the action follow so short afterwards. Three quotes from the document: - "Owning the Ecosystem: Letting Open Source Work for Us" - "Google should establish itself a leader in the open source community, taking the lead by cooperating wi…

This seems entirely unrelated to that leaked document? This has nothing to do with open-source, and Google Bard was announced and released in beta way before that document.

Re: Bard now open to use

#110
After asking a few questions, I’m very disappointed with its quality compared to Bing Chat.

My current AI chat benchmark is to ask about LLVM APIs. I’ve asked to both Bing Chat and Bard three questions:

- What info can the LLVM lazy-value-info analysis pass analyze?

- Can you give me code samples to use the info?

- Can you give me a list on important LVI methods?

Both fared well on the first question, but on the second question, Bard either didn’t produce LLVM code at all (showing examples of LLVM IR), or hallucinate non-existent methods not even close to what existed.

Bing chat, in comparison produced correct answers that are very helpful. In my experience Bing chat almost always produces something that is both coherent and useful; Asking LLVM questions, Bing chat can search the Doxygen documentation, find out common LLVM patterns on its own (like using a Worklist while iterating), and I’ve succeeded in writing whole LLVM passes that compiled in one go, from a very light description of an algorithm.

Maybe I’m spoiled with Bing chat, but I don’t think I’ll be using Bard that much if it’s quality doesn’t improve. Very disappointed personally. (I’d have expected Bard to work much better mostly just because Google searches better than Bing.)

Post reply on HN