Google Bard AI 实践体验 “AI之争:谁更胜一筹?”

什么是Google Bard?

Google Bard是谷歌最新推出的自然语言生成工具,它基于先进的机器学习算法和人工智能技术,能够生成高质量的自然语言文本,包括新闻报道、评论、诗歌、小说等。

Google Bard通过深度学习和神经网络技术,从大量文本数据中学习语言模式,进而生成高质量的自然语言文本。与传统的文本生成器不同,Google Bard的生成文本质量更高、更具可读性,能够模拟出人类写作的风格和语调。

该技术的应用领域广泛,例如可以用于自动撰写新闻报道、生成商品描述、自动生成邮件回复等。同时,Google Bard还可用于智能客服、智能写作助手等场景,为人们提供更加高效和优质的服务。

如何申请Google Bard?

Google Bard的申请方法请看之前的文章:Google AI 人工智能谷歌“巴德” Google Bard 申请攻略教程

申请后并没有收到任何通知的邮件或者通过的信息,而是直接打开首页可以查看你是否可以使用。如果打开后是下面这个页面就说明你已经通过了申请,可以使用Google Bard了。

直接拉到底部,点击 我同意,进入下一个页面

巴德是一个实验品 当您尝试 Bard 时,请记住: 巴德并不总是正确的 巴德可能会给出不准确或不恰当的回应。如有疑问,请使用“Google it”按钮查看 Bard 的回复。Bard 会根据您的反馈变得更好 请评价回复并标记任何可能令人反感或不安全的内容。

 

我是巴德,你的创意和乐于助人的合作者。我有局限性,不会总是做对,但您的反馈将帮助我改进。 不知道从哪里开始?你可以试试:

 测试:

我是巴德,你的创意和乐于助人的合作者。我有局限性,不会总是做对,但您的反馈将帮助我改进。

不知道从哪里开始?你可以试试:

提问:

1.概述我关于夏季无酒精鸡尾酒食谱的博文

当你想清空聊天重新开始,点击左边栏的 Reset chat,Google bard 不会保存记录

2.请对chatgpt-4做一个介绍:

我们发现Google bard 并不支持中文,这一点明显不及chatgpt

那就改英文的提问,Please give an introduction to chatgpt-4,回答的速度很快,优于chatgpt

3.Predict the situation in Ukraine,will Russia win?

从回答可以看出bard的回答是实时的,基于近期的情况做出的回答!

4.预测spacex何时登陆火星?

对于这个答案发现,bard的内容基础是基于维基百科,这样看bard更像是一个AI内容搜索工具

5.创作:请写一个小游戏代码:贪食蛇

答案速度很快

import random
import pygame

# Define the constants
WIDTH = 600
HEIGHT = 600

# Create the snake
snake = [[0, 0]]

# Create the food
food = [random.randint(0, WIDTH), random.randint(0, HEIGHT)]

# Create the game loop
while True:
# Update the snake
snake.append((snake[-1][0] + 1, snake[-1][1] + 1))

# Update the food
food = [random.randint(0, WIDTH), random.randint(0, HEIGHT)]

# Check if the snake has eaten the food
if snake[0] == food:
snake.pop(0)
food = [random.randint(0, WIDTH), random.randint(0, HEIGHT)]
snake.append((snake[-1][0] + 1, snake[-1][1] + 1))

# Draw the snake
for i in range(len(snake)):
pygame.draw.rect(screen, (0, 0, 255), [snake[i][0], snake[i][1], 1])

# Draw the food
pygame.draw.rect(screen, (255, 0, 0), food)

# Check if the snake has crashed
for i in range(len(snake) – 1):
if snake[i][0] == snake[i + 1][0] and snake[i][1] == snake[i + 1][1]:
print(“Game Over!”)
break

# Check if the snake has gone out of bounds
if snake[0][0] < 0 or snake[0][1] < 0 or snake[0][0] > WIDTH or snake[0][1] > HEIGHT:
print(“Game Over!”)
break

# Check if the user has pressed a key
for event in pygame.event.get():
if event.type == pygame.QUIT:
pygame.quit()
elif event.type == pygame.KEYDOWN:
if event.key == pygame.K_UP:
snake[0][1] -= 1
elif event.key == pygame.K_DOWN:
snake[0][1] += 1
elif event.key == pygame.K_LEFT:
snake[0][0] -= 1
elif event.key == pygame.K_RIGHT:
snake[0][0] += 1

# Update the screen
pygame.display.update()

This is just a basic example of a Snake game in Python. There are many ways to improve this game, such as adding more features, making the graphics more realistic, or making the game more challenging.
这只是 Python 贪吃蛇游戏的一个基本示例。有很多方法可以改进这款游戏,例如添加更多功能、使图形更逼真或使游戏更具挑战性。

还有很多小伙伴可以自己去测试

总结:

1 Bard 是由谷歌 LaMDA 模型提供支持的实验型对话 AI 服务,利用来自互联网的信息提供最新、高质量的回复。谷歌说了,它是对搜索引擎的补充,而不是一种搜索。

2 Bard 目前仅支持英语,但谷歌表示正努力支持尽可能多的语言。此外,Bard 目前还不具备编码能力,因此不支持有关代码的响应。

3 Bard 能在瞬间生成文本块,这与 ChatGPT 逐字输出答案的方式不同。此外,Bard 还有一个优势,其给出的答案包含三个不同的版本或草稿,用户可以切换其中任何一个答案。

4 Google发布消息显得很谨慎,没有任何气势。在微软如此强烈的进攻下显得被压制了。

5 IP只支持美国和英国。

Rate this post

留言 | Comments