当前位置: 首页 > news >正文

阿里云服务器可以做商业网站php网站开发工程师招聘要求

阿里云服务器可以做商业网站,php网站开发工程师招聘要求,wordpress悬浮表单,一个网站一年要多少钱MiniGPT4是基于GPT3的改进版本#xff0c;它的参数量比GPT3少了一个数量级#xff0c;但是在多项自然语言处理任务上的表现却不逊于GPT3。项目作者以MiniGPT4-7B作为实战演练项目。 创作者#xff1a;衍哲 体验链接#xff1a; https://aistudio.baidu.com/aistudio/proj…MiniGPT4是基于GPT3的改进版本它的参数量比GPT3少了一个数量级但是在多项自然语言处理任务上的表现却不逊于GPT3。项目作者以MiniGPT4-7B作为实战演练项目。 创作者衍哲 体验链接 https://aistudio.baidu.com/aistudio/projectdetail/6556667 一键fork fork该项目并运行运行环境建议至少选择A100(40G)及以上配置 安装相关模块 1import os 2os.system(pip install --pre --upgrade paddlenlp -f https://www.paddlepaddle.org.cn/whl/paddlenlp.html) # 安装nlp分支最新包 3os.system(pip install paddlepaddle-gpu0.0.0.post112 -f https://www.paddlepaddle.org.cn/whl/linux/gpu/develop.html) 4os.system(pip install tqdm) 5!pip install ipywidgets引用相关模块 1%%capture2os.environ[CUDA_VISIBLE_DEVICES] 03os.environ[FLAGS_use_cuda_managed_memory] true4import requests5from PIL import Image6import gradio as gr7from tqdm import tqdm8import ipywidgets as widgets9from IPython.display import display 10import csv 11from itertools import islice 12from paddlenlp.transformers import MiniGPT4ForConditionalGeneration, MiniGPT4Processor下载miniGPT4权重或配置文件 1!mkdir minigpt41%%capture2os.system(wget -O minigpt4/model_config.json https://bj.bcebos.com/v1/ai-studio-online/924ed883c17b4b8b88b4a1f98e24d34b3b00160ac9bd4b3ba478aff6974e0e9d?responseContentDispositionattachment%3B%20filename%3Dmodel_config.json )3!wget -O ./minigpt4/model_state.pdparams https://bj.bcebos.com/v1/ai-studio-online/18bd53eaa2854263ba31fb4d75f31a5f0d38421a6da64525bff6da230389fc36?responseContentDispositionattachment%3B%20filename%3Dmodel_state.pdparams4!wget -O ./minigpt4/generation_config.json https://bj.bcebos.com/v1/ai-studio-online/f0b2129d6a934a97abcaa139ac1f28e33a6940004c7a4c859737f282640cf332?responseContentDispositionattachment%3B%20filename%3Dgeneration_config.json5!wget -O ./minigpt4/preprocessor_config.json https://bj.bcebos.com/v1/ai-studio-online/748c332837d34f389d762f487470b1a7221edd36ccb5484b913bd2d3855ee9f6?responseContentDispositionattachment%3B%20filename%3Dpreprocessor_config.json6!wget -O ./minigpt4/sentencepiece.bpe.model https://bj.bcebos.com/v1/ai-studio-online/0139a1bfcdf84058b77cea4631837340ea94f5fcc37445929a3414f05d07579b?responseContentDispositionattachment%3B%20filename%3Dsentencepiece.bpe.model7!wget -O ./minigpt4/special_tokens_map.json https://bj.bcebos.com/v1/ai-studio-online/90b16a96d4f94200ab417b39dcf3bce4ddef5885625c4d0c8e70b3f659cb6993?responseContentDispositionattachment%3B%20filename%3Dspecial_tokens_map.json8!wget -O ./minigpt4/tokenizer.json https://bj.bcebos.com/v1/ai-studio-online/e877a685eb86499cb87e1c4cbf85353856506d12e9a841a292e780aa4a9e188a?responseContentDispositionattachment%3B%20filename%3Dtokenizer.json9!wget -O ./minigpt4/tokenizer_config.json https://bj.bcebos.com/v1/ai-studio-online/f93064db167c4075b1f86d6878cac9303fb8df418f7a42a7900785a6e188cc44?responseContentDispositionattachment%3B%20filename%3Dtokenizer_config.json 10--2023-07-27 10:54:29-- https://bj.bcebos.com/v1/ai-studio-online/924ed883c17b4b8b88b4a1f98e24d34b3b00160ac9bd4b3ba478aff6974e0e9d?responseContentDispositionattachment%3B%20filename%3Dmodel_config.json 11Resolving bj.bcebos.com (bj.bcebos.com)... 182.61.200.195, 182.61.200.229, 2409:8c04:1001:1002:0:ff:b001:368a 12Connecting to bj.bcebos.com (bj.bcebos.com)|182.61.200.195|:443... connected. 13HTTP request sent, awaiting response... 200 OK 14Length: 5628 (5.5K) [application/octet-stream] 15Saving to: minigpt4/model_config.json实例化miniGPT4模型和处理器 1model_path ./minigpt4 2model MiniGPT4ForConditionalGeneration.from_pretrained(model_path) 3model.eval() 4processor MiniGPT4Processor.from_pretrained(model_path)模型推理 输入图像urlprompt(单张图片单轮对话) 另有本地上传图像形式请进入项目查看 1def predict_per_url_prompt(urlNone,textNone):2 if urlNone:3 url https://paddlenlp.bj.bcebos.com/data/images/mugs.png4 image Image.open(requests.get(url, streamTrue).raw)5 if text None:6 text describe this image78 prompt Give the following image: ImgImageContent/Img. You will be able to see the image once I provide it to you. Please answer my questions.###Human: ImgImageHere/Img TextHere###Assistant:9 10 inputs processor([image], text, prompt) 11 12 generate_kwargs { 13 max_length: 300, 14 num_beams: 1, 15 top_p: 1.0, 16 repetition_penalty: 1.0, 17 length_penalty: 0, 18 temperature: 1, 19 decode_strategy: greedy_search, 20 eos_token_id: [[835], [2277, 29937]], 21 } 22 outputs model.generate(**inputs, **generate_kwargs) 23 msg processor.batch_decode(outputs[0]) 24 return msg[0][0:-5]将图像上传到本地后的file_pathprompt(多张图片单轮对话) 1def predict_dir_and_one_prompt_out_list(dir_pathNone,textNone):2 import os 3 assert os.path.isdir(dir_path),print(请输入文件夹路径,而不是图像路径)4 output []5 for per_image_name in tqdm (os.listdir(dir_path)):6 image Image.open(os.path.join(dir_path,per_image_name))7 if text None:8 text describe this image9 else: 10 text text 11 12 prompt Give the following image: ImgImageContent/Img. You will be able to see the image once I provide it to you. Please answer my questions.###Human: ImgImageHere/Img TextHere###Assistant: 13 14 inputs processor([image], text, prompt) 15 16 generate_kwargs { 17 max_length: 300, 18 num_beams: 1, 19 top_p: 1.0, 20 repetition_penalty: 1.0, 21 length_penalty: 0, 22 temperature: 1, 23 decode_strategy: greedy_search, 24 eos_token_id: [[835], [2277, 29937]], 25 } 26 outputs model.generate(**inputs, **generate_kwargs) 27 msg processor.batch_decode(outputs[0]) 28 output.append(msg[0][0:-5]) 29 return output效果展示 输入描述这张图片使用中文 输出这张图片显示了一个女性角色穿着红色和白色的服装手持一根金色的剑。她的头发是白色的眼睛是红色的。她站在一张草地上手持剑的柄子。这个角色看起来像是一个英雄她的服装和装备显示出她的力量和勇气 1predict_per_url_prompt(urlhttps://ai-studio-static-online.cdn.bcebos.com/d283b05404bd44b69b9be868fddb67616296858284bf4ad587e29432de66e930,text描述这张图片,使用中文) 2这张图片显示了一个女性角色穿着红色和白色的服装手持一根金色的剑。她的头发是白色的眼睛是红色的。她站在一张草地上手持剑的柄子。这个角色看起来像是一个英雄她的服装和装备显示出她的力量和勇气更多玩法可一键fork该项目进行模型微调。 点击下方链接即可立即体验更多大模型应用。 https://aistudio.baidu.com/aistudio/application/center
http://www.hkea.cn/news/14373287/

相关文章:

  • 苏宁易购网站建设情况怎么添加网站背景音乐
  • 网站建设模板软件十大网站开发公司
  • 网站怎么做收录ui设计培训班的学费一般是多少钱?
  • 六安网站建设培训厦门市建设局官方网站
  • 网站维护项目广州自助建站软件
  • 深圳做网站排名开发app需要什么技术人才
  • 百度站长平台登录网络营销公司模板
  • 注册网站要求网站站内消息设计方案
  • 河南省建设科技协会网站网站重新设计
  • 找建筑类工作哪个网站好php网站开发周期多长
  • 钢材网站建设河南建筑材料价格信息网
  • 大学院系网站建设成绩查询
  • 兼职网站排行怎么做业务推广技巧
  • 长沙专业网站建设怎么做如何做网站内容管理
  • html5手机资讯网站模板杭州网站建设培训
  • 腾讯云如何建设网站域名注册服务
  • 备案期间 需要关闭网站吗wordpress如何制作二维码
  • 做网站需要哪些证书wordpress 社区插件
  • asp网站用什么做编程培训机构找极客时间
  • 小城镇建设期刊网站网站qq联系怎么做
  • 官方网站建设合同济宁定制网站建设推广
  • 做网站推广如何徐州网站设计价位
  • 建设网站贵吗深圳汇网网站建设
  • 仓山福州网站建设视觉设计就业方向
  • 南京好的网站设计公司百度云搜索引擎官方入口
  • 高质量的邯郸网站建设微信公众号1000阅读量多少钱
  • 安防监控网站模板培训方案
  • 如何做点击赚钱的网站什么网站空间稳定
  • 一键网站建站系统做期货财经网站需要哪些资质
  • 绘制网站结构图西乡做网站多少钱