摘要: 安装python 依赖 pip install torch transformers accelerate sentencepiece python代码,设计一个测试用例 from transformers import AutoTokenizer, AutoModelForCausalLM imp 阅读全文
posted @ 2024-10-10 10:19 testway 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 调用openai代码成功,但是没有调用额度 import openai import requests # 设置 OpenAI API 密钥 openai.api_key = "sk-w6FiFg0JiBmn5eQCzD9XRy0Sqi9vfoZLxdyPdX3XaRT3BlbkFJLNOrDZtm 阅读全文
posted @ 2024-09-25 11:06 testway 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1、安装ollama ollma下载https://ollama.com/download/windows linux 安装curl -fsSL https://ollama.com/install.sh | sh运行ollama run gemma:2bollama run gemma:7b使用端 阅读全文
posted @ 2024-04-08 11:49 testway 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 问题现象,启动nginx,提示版本不对 [root@k8s-test-node2 modules]# /data/nginx/sbin/nginxnginx: [emerg] module "/usr/lib64/nginx/modules/ngx_http_image_filter_module. 阅读全文
posted @ 2024-02-20 15:14 testway 阅读(948) 评论(0) 推荐(0) 编辑
摘要: 使用docker 搭建mysql ,docker-compose.yml version: "2.1" services: mysql: image: mysql:8.0.35 container_name: mysql8 environment: MYSQL_ROOT_PASSWORD: 2pq8 阅读全文
posted @ 2024-01-15 09:02 testway 阅读(637) 评论(0) 推荐(0) 编辑
摘要: opengauss数据库导入后,新增的用户没有权限,需要对schema下所有表进行批量授权,sql如下 #高斯对单表进行授权 GRANT Delete, Insert, References, Select, Trigger, Truncate, Update ON TABLE "db_test". 阅读全文
posted @ 2024-01-11 13:31 testway 阅读(397) 评论(0) 推荐(0) 编辑
摘要: python ElementTree操作xml节点,包括增删改查 xml原文 <Voucher> <Id>967a198783d14835860574c697478156</Id> <Remark>main摘要443344245567583384475</Remark> <Delete>需要删除的节 阅读全文
posted @ 2023-11-08 15:40 testway 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 定时备份mysql指定数据库脚本,保留60天 #!/bin/bash # path cd /opt/pmo/mysql_data target_directory="/opt/pmo/mysql_data" # get time now current_time=$(date +%s) # cal 阅读全文
posted @ 2023-10-10 11:33 testway 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Loadrunner 发生的json请求中,包含有中文。回放脚本,实际发送出去的body 不是中文,而是乱码,这就导致请求不正确,影响测试的实际结果。 要解决这个问题,先要把中文使用函数lr_convert_string_encoding转换一下,再在请求中引用该转换后的参数,回放的请求数据正常。示 阅读全文
posted @ 2023-09-15 18:49 testway 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 现在学生经常需要平板上网课,读书郎家长端有监控平板平板的功能,但是频繁手动操作,也不方便。就用appium实现定时去抓取一下平板使用情况。经过一天的时间,终于实现稳定、定时抓取读书郎平板屏幕截图。里面有一些很实用的知识点 from appium import webdriver import tim 阅读全文
posted @ 2022-10-05 09:14 testway 阅读(588) 评论(0) 推荐(0) 编辑