上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 186 下一页
摘要: Codon是一个高性能的Python编译器,可以将Python代码编译成本地机器代码,没有任何运行时开销。与Python相比,单线程的典型加速比在10-100倍以上。Codon的性能通常与C / C ++相当(有时甚至更好)。与Python不同,Codon支持本地多线程,这可能导致速度提高多倍。Co 阅读全文
posted @ 2023-03-21 22:04 myrj 阅读(572) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { char a[]="hellofg",*p=a; printf("%c\n",*p+5) ;//*p得到指针指的字符,+5是字符ASCII码加5 ,结果为m printf("%c\n",*(p+5)) ;//h:p+0 e:p+1....f:p 阅读全文
posted @ 2023-03-21 09:33 myrj 阅读(75) 评论(0) 推荐(0)
摘要: from rembg import remove from PIL import Image input_path="tuurenwu.png" out="mca.png" input=Image.open(input_path) outa=remove(input) outa.save(out) 阅读全文
posted @ 2023-03-21 07:15 myrj 阅读(118) 评论(0) 推荐(0)
摘要: 选择英文,按shift+F3 阅读全文
posted @ 2023-03-20 21:03 myrj 阅读(164) 评论(0) 推荐(0)
摘要: 电脑没联网,有不认识的字:利用WORD的拼音指南 阅读全文
posted @ 2023-03-20 21:00 myrj 阅读(87) 评论(0) 推荐(0)
摘要: Microsoft Visual C++ Redistributable 阅读全文
posted @ 2023-03-20 20:50 myrj 阅读(102) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-03-20 20:44 myrj 阅读(11) 评论(0) 推荐(0)
摘要: Python 数据库名为 dataset,将关系型数据库包装为 NoSQL 使用方式,非常方便快捷。底层基于 SQLAlchemy,因此支持多种数据库 SQLite、PostgreSQL、MySQL。dataset.readthedocs.io/en/latest/ ​​​ 阅读全文
posted @ 2023-03-20 20:37 myrj 阅读(44) 评论(0) 推荐(0)
摘要: https://modelscope.cn/models/damo/text-to-video-synthesis/summary?continueFlag=316e474d46439886c7d26c850c8c9d37 from modelscope.pipelines import pipel 阅读全文
posted @ 2023-03-20 13:35 myrj 阅读(184) 评论(0) 推荐(0)
摘要: aak="adb -s {0} shell am start --user 0 -n com.kuaishou.nebula/com.yxcorp.gifshow.HomeActivity".format(sjh) aak="adb -s {0} shell am start --user 999 阅读全文
posted @ 2023-03-20 08:23 myrj 阅读(293) 评论(0) 推荐(0)
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 186 下一页