一些运行指令_无用草稿

2024-02-06 03:44
文章标签 运行 指令 无用 草稿

本文主要是介绍一些运行指令_无用草稿,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

nvidia-smi

/data1/xyj/datasets/suzhou/images/ocr_en_422k
/data1/xyj/datasets/suzhou/images/ocr_zh_230920_381k

start_time = time.time()
print(“\nloading_time:{: .2f}s\n”.format(time.time() - start_time))
start_time = time.time()
print(“\nconsume_time:{: .2f}s\n”.format( time.time() - start_time))

/data1/xyj/datasets/en_test/

/data1/xyj/datasets/zh_test/

CUDA_VISIBLE_DEVICES=1 python chat_qwen_en.py
CUDA_VISIBLE_DEVICES=1 python inference.py

deepsolo

python demo/demo.py --config-file configs/ViTAEv2_S/TotalText/finetune_150k_tt_mlt_13_15_textocr.yaml --input /data1/xyj/datasets/suzhou/images/ocr_en_422k --output output --opts MODEL.WEIGHTS work_dirs/tt_vitaev2-s_finetune_synth-tt-mlt-13-15-textocr.pth

python chat_qwen_en.py

python app_deepsolo.py --config-file /data1/xyj/DeepSolo-main/configs/ViTAEv2_S/TotalText/finetune_150k_tt_mlt_13_15_textocr.yaml --input /data1/xyj/datasets/en_test

python demo/app_deepsolo.py --config-file configs/ViTAEv2_S/TotalText/finetune_150k_tt_mlt_13_15_textocr.yaml

python demo/app_deepsolo.py --input /data1/xyj/datasets/en_test

python demo/app_deepsolo.py --input /data1/xyj/datasets/en_test

python demo/demo.py --config-file configs/ViTAEv2_S/ReCTS/finetune.yaml --input /data1/xyj/datasets/suzhou/images/ocr_zh_230920_381k --output output --opts MODEL.WEIGHTS work_dirs/rects_vitaev2-s_finetune.pth
CUDA_VISIBLE_DEVICES=2 python demo/demo.py --config-file configs/R_50/ReCTS/finetune.yaml --input /data1/xyj/datasets/suzhou/images/ocr_zh_230920_381k --output output --opts MODEL.WEIGHTS work_dirs/rects_res50_finetune.pth
CUDA_VISIBLE_DEVICES=2 python demo/demo.py --config-file configs/ViTAEv2_S/TotalText/finetune_150k_tt_mlt_13_15_textocr.yaml --input /data1/xyj/datasets/zh_test --output output --opts MODEL.WEIGHTS work_dirs/tt_vitaev2-s_finetune_synth-tt-mlt-13-15-textocr.pth

CUDA_VISIBLE_DEVICES=2 python demo/demo.py --config-file configs/R_50/ReCTS/finetune.yaml --input /data1/xyj/datasets/zh_test --output output --opts MODEL.WEIGHTS work_dirs/rects_res50_finetune.pth

这篇关于一些运行指令_无用草稿的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/683038

相关文章

Nginx指令add_header和proxy_set_header的区别及说明

《Nginx指令add_header和proxy_set_header的区别及说明》:本文主要介绍Nginx指令add_header和proxy_set_header的区别及说明,具有很好的参考价... 目录Nginx指令add_header和proxy_set_header区别如何理解反向代理?proxy

Java终止正在运行的线程的三种方法

《Java终止正在运行的线程的三种方法》停止一个线程意味着在任务处理完任务之前停掉正在做的操作,也就是放弃当前的操作,停止一个线程可以用Thread.stop()方法,但最好不要用它,本文给大家介绍了... 目录前言1. 停止不了的线程2. 判断线程是否停止状态3. 能停止的线程–异常法4. 在沉睡中停止5

mysql删除无用用户的方法实现

《mysql删除无用用户的方法实现》本文主要介绍了mysql删除无用用户的方法实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 1、删除不用的账户(1) 查看当前已存在账户mysql> select user,host,pa

在VSCode中本地运行DeepSeek的流程步骤

《在VSCode中本地运行DeepSeek的流程步骤》本文详细介绍了如何在本地VSCode中安装和配置Ollama和CodeGPT,以使用DeepSeek进行AI编码辅助,无需依赖云服务,需要的朋友可... 目录步骤 1:在 VSCode 中安装 Ollama 和 CodeGPT安装Ollama下载Olla

解读docker运行时-itd参数是什么意思

《解读docker运行时-itd参数是什么意思》在Docker中,-itd参数组合用于在后台运行一个交互式容器,同时保持标准输入和分配伪终端,这种方式适合需要在后台运行容器并保持交互能力的场景... 目录docker运行时-itd参数是什么意思1. -i(或 --interactive)2. -t(或 --

pycharm远程连接服务器运行pytorch的过程详解

《pycharm远程连接服务器运行pytorch的过程详解》:本文主要介绍在Linux环境下使用Anaconda管理不同版本的Python环境,并通过PyCharm远程连接服务器来运行PyTorc... 目录linux部署pytorch背景介绍Anaconda安装Linux安装pytorch虚拟环境安装cu

通过prometheus监控Tomcat运行状态的操作流程

《通过prometheus监控Tomcat运行状态的操作流程》文章介绍了如何安装和配置Tomcat,并使用Prometheus和TomcatExporter来监控Tomcat的运行状态,文章详细讲解了... 目录Tomcat安装配置以及prometheus监控Tomcat一. 安装并配置tomcat1、安装

mysqld_multi在Linux服务器上运行多个MySQL实例

《mysqld_multi在Linux服务器上运行多个MySQL实例》在Linux系统上使用mysqld_multi来启动和管理多个MySQL实例是一种常见的做法,这种方式允许你在同一台机器上运行多个... 目录1. 安装mysql2. 配置文件示例配置文件3. 创建数据目录4. 启动和管理实例启动所有实例

IDEA运行spring项目时,控制台未出现的解决方案

《IDEA运行spring项目时,控制台未出现的解决方案》文章总结了在使用IDEA运行代码时,控制台未出现的问题和解决方案,问题可能是由于点击图标或重启IDEA后控制台仍未显示,解决方案提供了解决方法... 目录问题分析解决方案总结问题js使用IDEA,点击运行按钮,运行结束,但控制台未出现http://

解决Spring运行时报错:Consider defining a bean of type ‘xxx.xxx.xxx.Xxx‘ in your configuration

《解决Spring运行时报错:Considerdefiningabeanoftype‘xxx.xxx.xxx.Xxx‘inyourconfiguration》该文章主要讲述了在使用S... 目录问题分析解决方案总结问题Description:Parameter 0 of constructor in x