当前位置:   article > 正文

ChatGPT Team VS Genmini Pro VS 文心一言3.5,ChatGPT到底有多强大?

genmini pro

写在前面

本人只支持GPT-4.0,所以没管谷歌和百度的事(因为它们免费用户也能生成图片)

ChatGPT

键盘快捷键

询问版本号

生成图片

写代码

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  9. </dependency>
  10. <!-- 其他依赖 -->
  11. </dependencies>
  12. package com.example.shopping;
  13. import org.springframework.boot.SpringApplication;
  14. import org.springframework.boot.autoconfigure.SpringBootApplication;
  15. @SpringBootApplication
  16. public class Application {
  17. public static void main(String[] args) {
  18. SpringApplication.run(Application.class, args);
  19. }
  20. }
  21. package com.example.shopping;
  22. import org.springframework.stereotype.Controller;
  23. import org.springframework.ui.Model;
  24. import org.springframework.web.bind.annotation.GetMapping;
  25. @Controller
  26. public class ShoppingController {
  27. @GetMapping("/")
  28. public String homePage(Model model) {
  29. // 可以在这里添加模型属性,例如商品列表
  30. return "index"; // 返回index.html模板
  31. }
  32. }
  33. <!DOCTYPE html>
  34. <html xmlns:th="http://www.thymeleaf.org">
  35. <head>
  36. <title>购物网站</title>
  37. <meta charset="UTF-8">
  38. <!-- 引入CSS -->
  39. </head>
  40. <body>
  41. <h1>欢迎来到我的购物网站</h1>
  42. <!-- 内容和结构 -->
  43. </body>
  44. </html>
  45. ./mvnw spring-boot:run

写表格

导出Excel表格

  1. import pandas as pd
  2. # 创建数据
  3. data = {
  4. "边数 (n)": list(range(3, 13)),
  5. "多边形名称": ["三角形", "四边形", "五边形", "六边形", "七边形", "八边形", "九边形", "十边形", "十一边形", "十二边形"],
  6. "内角和 (S)": [(n-2)*180 for n in range(3, 13)]
  7. }
  8. # 创建DataFrame
  9. df = pd.DataFrame(data)
  10. # 文件路径
  11. file_path = '/mnt/data/polygon_angles.xlsx'
  12. # 写入Excel文件
  13. df.to_excel(file_path, index=False)
  14. file_path
https://www.123pan.com/s/3fqmjv-2MK3v.html

代码分析

生成图表

  1. # 数据(英文版)
  2. countries_en = ['China', 'India', 'USA', 'Indonesia', 'Brazil', 'Others']
  3. population = [1400, 1350, 330, 270, 210, 2940]
  4. # 生成饼图(英文版)
  5. plt.figure(figsize=(10, 7))
  6. plt.pie(population, labels=countries_en, autopct='%1.1f%%', startangle=140)
  7. plt.title('World Population Statistics Example Pie Chart')
  8. plt.axis('equal') # Ensure that pie is drawn as a circle.
  9. plt.show()

导出Excel表格

  1. # 将数据导出到Excel
  2. data_en = {
  3. "Country": countries_en,
  4. "Population (millions)": population
  5. }
  6. # 创建DataFrame
  7. df_en = pd.DataFrame(data_en)
  8. # 指定导出的Excel文件路径
  9. file_path_en = '/mnt/data/world_population_statistics.xlsx'
  10. # 导出到Excel
  11. df_en.to_excel(file_path_en, index=False)
  12. file_path_en
https://www.123pan.com/s/3fqmjv-sMK3v.html

导出图表图片

  1. # Re-generate the pie chart to save it as an image file
  2. # Generate pie chart (English version) for saving
  3. plt.figure(figsize=(10, 7))
  4. plt.pie(population, labels=countries_en, autopct='%1.1f%%', startangle=140)
  5. plt.title('World Population Statistics Example Pie Chart')
  6. plt.axis('equal') # Ensure that pie is drawn as a circle.
  7. # File path for saving image
  8. image_file_path = '/mnt/data/world_population_pie_chart.png'
  9. # Save the figure
  10. plt.savefig(image_file_path)
  11. image_file_path

分析图片

我的模载号:yz7,绑定邮箱:512163929@qq.com,我将引用我发的论坛文章里的1张截图进行数据分析

 分析还不错,正确答案:OMSI 2

GPTs

用过GPT的朋友都知道,GPTs可以补充GPT的不足,相当于软件的插件,游戏的DLCs、MODs!

GPTs和GPT插件却截然不同!

自创GPTs

PS:我就不放创建过程了,直接放成果!

这个GPTs主要方便解锁Game用户使用,详细见此

 解决次数限制,脚本调成GPTs(不调可能会报错,没有脚本可忽略,Creator为创建GPTs时使用!)

演示

工具挺不错的!大家可以尝试下!

ChatGPT Plugins

同理,脚本切换到Plugins

 

进入Plugins Store

由于我们还没Plugins,需要安装

 

点【确定】

进入商店

以Ai PDF为例,点安装

 

如图安装成功,启用即可

 

开始使用Ai PDF 

功能还不错,不过不支持分析链接,咱换个Plugins试试

 

 ImageSearch

 能搜索,只不过还没找到

 

Gemini Pro

 也是一个大模型,Google旗下的

 

免费用户只能英文使用,可搭载Google翻译

 

挺不错的,相比排名第二!

 文心一言3.5

把百度产品摆上来!

简单问答

 生成图片

写代码

生成视频:无法生成

再见

写在后面

文章写完以后,我觉得ChatGPT挺好,你呢?

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/774807
推荐阅读
相关标签
  

闽ICP备14008679号