- xGen-MM (BLIP-3):一类开放式大型多模态模型
Phoenixtree_DongZhao
LargeModel人工智能深度学习大语言模型
xGen-MM(BLIP-3):AFamilyofOpenLargeMultimodalModelsGitHub-salesforce/LAVISatxgen-mm|2408.08872(arxiv.org)AbstractThisreportintroducesxGen-MM(alsoknownasBLIP-3),aframeworkfordevelopingLargeMultimodalMod
- Kotlin面向对象编程实战
Devil枫
安卓kotlin开发语言android
一、类与对象:从蓝图到实例Kotlin的类定义简洁高效,支持属性自动生成getter/setter。以下是一个完整的Person类示例://定义Person类classPerson(valname:String,varage:Int){//成员方法funintroduce(){println("姓名:$name,年龄:$age")}//私有方法示例privatefunvalidateAge(){r
- C#中Enum转List
白菜白又白啊
C#中Enum转listenum列表
1、定义一个枚举类publicenumFormDetail{[Description("FormCultureVideo")]FormCultureVideo=0,[Description("FormGoodsIntroduceVideo")]FormGoodsIntroduceVideo=1,[Description("FormImprovePicture")]FormImprovePictur
- Software Engineering at Google翻译-III-12-Unit Testing(单元测试 )
rock.dai
SoftwareEngineeringatGoogleSoftwareEngineeringatgoogle
参考https://github.com/daizhenhong/swe-at-google/blob/main/Part_III_Processes/total/Chapter-12-total.md第12章单元测试UnitTesting作者:ErikKue€er编辑:TomManshreckoriginThepreviouschapterintroducedtwoofthemainaxesal
- C++ constexpr 和 if constexpr
Arthur...J
ProgrammingPracticec++开发语言
constexpr和ifconstexpr备忘constexprandifconstexprCheatSheet中文English1.概念1.Concept-constexpr(C++11引入)用于修饰函数或变量,表示它们可以在编译期计算。-constexpr(introducedinC++11)marksfunctionsorvariableswhosevaluescanbeevaluateda
- C++ decltype总结
Arthur...J
ProgrammingPractice开发语言c++
decltype的中英文对照总结:中文English概念Conceptdecltype是C++11引入的关键字,用于在编译期获取表达式的类型。decltypeisakeywordintroducedinC++11thatobtainsthetypeofanexpressionatcompiletime.它能够准确推导表达式的类型,包括常量、引用、指针等属性。Itaccuratelydeducest
- My Journey with the Hyperlane Framework: From Getting Started to Performance Optimization
WA-自动机
算法实验rust前端开发语言eclipse后端javaspringboot
Asajuniormajoringincomputerscience,IwasintroducedtotheHyperlaneframeworkwhileworkingonaWebserviceproject.Thishigh-performanceRustHTTPframeworkcompletelychangedmyperceptionofWebdevelopment.Belowismytru
- My Journey with the Hyperlane Framework: From Getting Started to Performance Optimization
WA-自动机
rust前端开发语言eclipse后端javaspringboot
Asajuniormajoringincomputerscience,IwasintroducedtotheHyperlaneframeworkwhileworkingonaWebserviceproject.Thishigh-performanceRustHTTPframeworkcompletelychangedmyperceptionofWebdevelopment.Belowismytru
- JSON-to-Excel Batch Conversion v2.1.2 New Features
wtsolutions
excel与json互相转换jsonexcelbatchWTSolutionsjson-to-excelnested
IntroductionJSON-to-ExcelisapowerfulExceladd-indesignedforuserswhoneedtoprocessJSONdata.Thelatestversion(v2.1.2)introducesbatchconversionfunctionality,makingdataprocessingmoreefficientandconvenient.Th
- The AimBetter May 2025 Crack
SEO-狼术
Delphi控件net数据库
TheAimBetterMay2025CrackTheAimBetterMay2025updateintroducesRedismonitoring,enhancingvisibilityandcontroloverkeyperformancemetricsandissues.AimBetterisacomprehensiveperformancemonitoringandoptimization
- python标记_typing --- 类型标注支持 — Python 3.9.0 文档
weixin_39647471
python标记
Atype,introducedinPEP593(Flexiblefunctionandvariableannotations),todecorateexistingtypeswithcontext-specificmetadata(possiblymultiplepiecesofit,asAnnotatedisvariadic).Specifically,atypeTcanbeannotated
- 《Kotlin 程序设计》第十二章 Kotlin的多线程:协程(Coroutines)
AI天才研究院
Java实战
第十二章Kotlin的多线程:协程(Coroutines)Kotlin1.1introducedcoroutines,anewwayofwritingasynchronous,non-blockingcode(andmuchmore).InthistutorialwewillgothroughsomebasicsofusingKotlincoroutineswiththehelpofthekotl
- -ee -er_EE协作登录系统-实施
cunchi8090
数据库javalinuxwebpython
-ee-erPreface前言ThisisthethirdarticleabouttheEECollaborativeLoginProject.ABetterWebsiteLoginSystemintroducestheLoginSystemandshowshowtoimplementaloginpage.TheEECollaborativeLoginSystemPartTwo-DesignCon
- Python @staticmethod 和 @classmethod
阿汤哥的程序之路
pythonpython
什么情况下使用静态方法,什么情况下使用类方法。今天我们就来捋一下这两个方法的应用场景首先,我们来定义一个普通的类,里面都是普通的方法,普通方法又叫实例方法。classPeople:def__init__(self,name,age):self.name=nameself.age=agedefintroduce_myself(self):print(f'大家好,我叫:{self.name}')def
- 【中间件】bthread_基础_TaskControl
CodeWithMe
中间件C/C++中间件c++
TaskControl1Definition2Introduce**核心职责**3成员解析**3.1数据结构与线程管理****3.2任务调度与负载均衡****3.3线程停放与唤醒(ParkingLot)****3.4统计与监控**4**工作流程**5**设计亮点**6**使用场景示例**7**总结**8学习过程中的疑问8.1init函数为什么不在构造函数中调用1DefinitionclassTas
- UnityWebRequest 详解
明明明h
Unity学习笔记c#unityUnityWebRequesthttp
UnityWebRequest文章目录1introduce――介绍2Method――常用方法2.1Constructor――构造函数2.2SendWebRequest――SendWebRequest方法2.3Get――Get方法2.4Post――Post方法2.5Put――Put方法2.6Abort――Abort方法2.7Head――Head方法2.8GetResponseHeader――GetR
- python导出微信群成员信息_python 使用wxpy实现获取微信好友列表 头像 群成员
weixin_39535349
python导出微信群成员信息
最近在学习python突然想要试试能不能把微信里面的微信群和好友取出来结果百度了一下找到了wxpy这怎么能不试一下呢用到wxpy、threading、os、time四个库第一步判断文件夹是否存在不存在则创建ifnotos.path.exists('./info/'+wechat.myself.name):filepath=os.getcwd()os.makedirs(filepath+'/info
- Oxygen XML Author Crack
SEO-狼术
DelphinetCrackxml数据库前端
OxygenXMLAuthorCrackOxygenXMLAuthorV27.1introducesAI-poweredassistancethatenablesdeveloperstoresolvevalidationissuesdirectlywithintheeditinginterface.OxygenXMLAuthorbySyncroSoftisacomprehensiveXMLedit
- What are the advantages of our neural network inference framework?
Yongqiang Cheng
Englishneuralnetworkinferenceframework
Whataretheadvantagesofourneuralnetworkinferenceframework?1.Background2.Whataretheadvantagesofourneuralnetworkinferenceframework?References1.BackgroundLetmeintroduce/ˌɪntrəˈdjuːs/thebackground/ˈbækɡraʊ
- python示例类
C7211BA
python开发语言
classPerson:def__init__(self,name,age):self.name=nameself.age=agedefintroduce(self):print(f"我叫{self.name},今年{self.age}岁。")defhave_birthday(self):self.age+=1print(f"{self.name}过生日啦,现在{self.age}岁了。")#创建
- 使用scrcpy自动镜像android设备
weixin_26726521
androidlinux物联网安卓python
AsanAndroiddeveloper,Ifindmyselfmirroringmyphysicaldeviceontomymonitorquiteoften.Notonlydoesitallowmetokeepmyhandsonmymouseandkeyboardwithoutswitchingback-and-forthtomyphone,butitalsoallowsmetoscreen-
- android镜像_使用scrcpy自动镜像android设备
weixin_26756315
android安卓docker物联网linux
android镜像AsanAndroiddeveloper,Ifindmyselfmirroringmyphysicaldeviceontomymonitorquiteoften.Notonlydoesitallowmetokeepmyhandsonmymouseandkeyboardwithoutswitchingback-and-forthtomyphone,butitalsoallowsme
- 线性代数 python_Python | 线性代数
cumubi7552
python机器学习人工智能神经网络线性代数
线性代数pythonLinearAlgebraisabranchofmathematicsthatdealswithlargedatabytheuseofVectorsandMatrices.Itintroducesadifferentwayofviewingandunderstandinglargedata.MatricesandVectorsaretheprimarytoolsandareus
- Auto-Encoding Variational Bayes论文笔记
catbird233
深度生成模型笔记vae论文笔记
本文地址:http://blog.csdn.net/qq_31456593/article/details/77743840深度学习博客目录:http://blog.csdn.net/qq_31456593/article/details/69340697introduce这篇论文将变分贝叶斯和神经网络结合起来,用神经网络学习变分推导的参数,以得到后验推理p(z|x)的似然,并获得了一个效果不错的
- Vue PDF Annotation plugin library online API examples
ThisarticleintroducestheonlineversionoftheElasticPDFAPItutorialforthePDFannotationplug-inlibraryinVueprojects.TheAPIincludes①ExporteditedPDFdata;②Exportannotationsjsondata;③Reloadoldannotations;④Chang
- Angular PDF Annotation plugin library online API examples
pdf.js
ThisarticleintroducestheonlineversionoftheElasticPDFAPItutorialforthePDFannotationplug-inlibraryinAngularprojects.TheAPIincludes①ExporteditedPDFdata;②Exportannotationsjsondata;③Reloadoldannotations;④C
- Uni-app PDF Annotation plugin library online API examples
pdf.js
ThisarticleintroducestheonlineversionoftheElasticPDFAPItutorialforthePDFannotationplug-inlibraryinUni-appprojects.TheAPIincludes①ExporteditedPDFdata;②Exportannotationsjsondata;③Reloadoldannotations;④C
- HTML && jQuery PDF Annotation plugin library online API examples
pdf.js
ThisarticleintroducestheonlineversionoftheElasticPDFAPItutorialforthePDFannotationplug-inlibraryinHTML&&jQueryprojects.TheAPIincludes①ExporteditedPDFdata;②Exportannotationsjsondata;③Reloadoldannotatio
- SQL:用AI软件来完成sql的存储过程
云端·目前学前端
sql数据库
说明:本章主要使用baiducomate的AI软件来完成4步操作1.创建DDL问题:请帮我创建一个student要求有id,createDate,userName,age,sex,introduce,要返回给我DDL语句。AI:当然,以下是一个基于您提供要求的student表的DDL(数据定义语言)语句:CREATETABLEstudent(idINTPRIMARYKEYAUTO_INCREMEN
- ZTE R218 4G Mobile WiFi Router Review
小2不语
LTERouterzter218
IfyouhadknowntheZTEMF9204GMiFirouter,youwillknowtheZTER218soonafterwetellyoutheR218comesfromtheZTEMF920withVodafonecustomization.VodafoneintroducedtheMF920toitsproductrangeandrenameitasR218.Theofficia
- Algorithm
香水浓
javaAlgorithm
冒泡排序
public static void sort(Integer[] param) {
for (int i = param.length - 1; i > 0; i--) {
for (int j = 0; j < i; j++) {
int current = param[j];
int next = param[j + 1];
- mongoDB 复杂查询表达式
开窍的石头
mongodb
1:count
Pg: db.user.find().count();
统计多少条数据
2:不等于$ne
Pg: db.user.find({_id:{$ne:3}},{name:1,sex:1,_id:0});
查询id不等于3的数据。
3:大于$gt $gte(大于等于)
&n
- Jboss Java heap space异常解决方法, jboss OutOfMemoryError : PermGen space
0624chenhong
jvmjboss
转自
http://blog.csdn.net/zou274/article/details/5552630
解决办法:
window->preferences->java->installed jres->edit jre
把default vm arguments 的参数设为-Xms64m -Xmx512m
----------------
- 文件上传 下载 解析 相对路径
不懂事的小屁孩
文件上传
有点坑吧,弄这么一个简单的东西弄了一天多,身边还有大神指导着,网上各种百度着。
下面总结一下遇到的问题:
文件上传,在页面上传的时候,不要想着去操作绝对路径,浏览器会对客户端的信息进行保护,避免用户信息收到攻击。
在上传图片,或者文件时,使用form表单来操作。
前台通过form表单传输一个流到后台,而不是ajax传递参数到后台,代码如下:
<form action=&
- 怎么实现qq空间批量点赞
换个号韩国红果果
qq
纯粹为了好玩!!
逻辑很简单
1 打开浏览器console;输入以下代码。
先上添加赞的代码
var tools={};
//添加所有赞
function init(){
document.body.scrollTop=10000;
setTimeout(function(){document.body.scrollTop=0;},2000);//加
- 判断是否为中文
灵静志远
中文
方法一:
public class Zhidao {
public static void main(String args[]) {
String s = "sdf灭礌 kjl d{';\fdsjlk是";
int n=0;
for(int i=0; i<s.length(); i++) {
n = (int)s.charAt(i);
if((
- 一个电话面试后总结
a-john
面试
今天,接了一个电话面试,对于还是初学者的我来说,紧张了半天。
面试的问题分了层次,对于一类问题,由简到难。自己觉得回答不好的地方作了一下总结:
在谈到集合类的时候,举几个常用的集合类,想都没想,直接说了list,map。
然后对list和map分别举几个类型:
list方面:ArrayList,LinkedList。在谈到他们的区别时,愣住了
- MSSQL中Escape转义的使用
aijuans
MSSQL
IF OBJECT_ID('tempdb..#ABC') is not null
drop table tempdb..#ABC
create table #ABC
(
PATHNAME NVARCHAR(50)
)
insert into #ABC
SELECT N'/ABCDEFGHI'
UNION ALL SELECT N'/ABCDGAFGASASSDFA'
UNION ALL
- 一个简单的存储过程
asialee
mysql存储过程构造数据批量插入
今天要批量的生成一批测试数据,其中中间有部分数据是变化的,本来想写个程序来生成的,后来想到存储过程就可以搞定,所以随手写了一个,记录在此:
DELIMITER $$
DROP PROCEDURE IF EXISTS inse
- annot convert from HomeFragment_1 to Fragment
百合不是茶
android导包错误
创建了几个类继承Fragment, 需要将创建的类存储在ArrayList<Fragment>中; 出现不能将new 出来的对象放到队列中,原因很简单;
创建类时引入包是:import android.app.Fragment;
创建队列和对象时使用的包是:import android.support.v4.ap
- Weblogic10两种修改端口的方法
bijian1013
weblogic端口号配置管理config.xml
一.进入控制台进行修改 1.进入控制台: http://127.0.0.1:7001/console 2.展开左边树菜单 域结构->环境->服务器-->点击AdminServer(管理) &
- mysql 操作指令
征客丶
mysql
一、连接mysql
进入 mysql 的安装目录;
$ bin/mysql -p [host IP 如果是登录本地的mysql 可以不写 -p 直接 -u] -u [userName] -p
输入密码,回车,接连;
二、权限操作[如果你很了解mysql数据库后,你可以直接去修改系统表,然后用 mysql> flush privileges; 指令让权限生效]
1、赋权
mys
- 【Hive一】Hive入门
bit1129
hive
Hive安装与配置
Hive的运行需要依赖于Hadoop,因此需要首先安装Hadoop2.5.2,并且Hive的启动前需要首先启动Hadoop。
Hive安装和配置的步骤
1. 从如下地址下载Hive0.14.0
http://mirror.bit.edu.cn/apache/hive/
2.解压hive,在系统变
- ajax 三种提交请求的方法
BlueSkator
Ajaxjqery
1、ajax 提交请求
$.ajax({
type:"post",
url : "${ctx}/front/Hotel/getAllHotelByAjax.do",
dataType : "json",
success : function(result) {
try {
for(v
- mongodb开发环境下的搭建入门
braveCS
运维
linux下安装mongodb
1)官网下载mongodb-linux-x86_64-rhel62-3.0.4.gz
2)linux 解压
gzip -d mongodb-linux-x86_64-rhel62-3.0.4.gz;
mv mongodb-linux-x86_64-rhel62-3.0.4 mongodb-linux-x86_64-rhel62-
- 编程之美-最短摘要的生成
bylijinnan
java数据结构算法编程之美
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
public class ShortestAbstract {
/**
* 编程之美 最短摘要的生成
* 扫描过程始终保持一个[pBegin,pEnd]的range,初始化确保[pBegin,pEnd]的ran
- json数据解析及typeof
chengxuyuancsdn
jstypeofjson解析
// json格式
var people='{"authors": [{"firstName": "AAA","lastName": "BBB"},'
+' {"firstName": "CCC&
- 流程系统设计的层次和目标
comsci
设计模式数据结构sql框架脚本
流程系统设计的层次和目标
 
- RMAN List和report 命令
daizj
oraclelistreportrman
LIST 命令
使用RMAN LIST 命令显示有关资料档案库中记录的备份集、代理副本和映像副本的
信息。使用此命令可列出:
• RMAN 资料档案库中状态不是AVAILABLE 的备份和副本
• 可用的且可以用于还原操作的数据文件备份和副本
• 备份集和副本,其中包含指定数据文件列表或指定表空间的备份
• 包含指定名称或范围的所有归档日志备份的备份集和副本
• 由标记、完成时间、可
- 二叉树:红黑树
dieslrae
二叉树
红黑树是一种自平衡的二叉树,它的查找,插入,删除操作时间复杂度皆为O(logN),不会出现普通二叉搜索树在最差情况时时间复杂度会变为O(N)的问题.
红黑树必须遵循红黑规则,规则如下
1、每个节点不是红就是黑。 2、根总是黑的 &
- C语言homework3,7个小题目的代码
dcj3sjt126com
c
1、打印100以内的所有奇数。
# include <stdio.h>
int main(void)
{
int i;
for (i=1; i<=100; i++)
{
if (i%2 != 0)
printf("%d ", i);
}
return 0;
}
2、从键盘上输入10个整数,
- 自定义按钮, 图片在上, 文字在下, 居中显示
dcj3sjt126com
自定义
#import <UIKit/UIKit.h>
@interface MyButton : UIButton
-(void)setFrame:(CGRect)frame ImageName:(NSString*)imageName Target:(id)target Action:(SEL)action Title:(NSString*)title Font:(CGFloa
- MySQL查询语句练习题,测试足够用了
flyvszhb
sqlmysql
http://blog.sina.com.cn/s/blog_767d65530101861c.html
1.创建student和score表
CREATE TABLE student (
id INT(10) NOT NULL UNIQUE PRIMARY KEY ,
name VARCHAR
- 转:MyBatis Generator 详解
happyqing
mybatis
MyBatis Generator 详解
http://blog.csdn.net/isea533/article/details/42102297
MyBatis Generator详解
http://git.oschina.net/free/Mybatis_Utils/blob/master/MybatisGeneator/MybatisGeneator.
- 让程序员少走弯路的14个忠告
jingjing0907
工作计划学习
无论是谁,在刚进入某个领域之时,有再大的雄心壮志也敌不过眼前的迷茫:不知道应该怎么做,不知道应该做什么。下面是一名软件开发人员所学到的经验,希望能对大家有所帮助
1.不要害怕在工作中学习。
只要有电脑,就可以通过电子阅读器阅读报纸和大多数书籍。如果你只是做好自己的本职工作以及分配的任务,那是学不到很多东西的。如果你盲目地要求更多的工作,也是不可能提升自己的。放
- nginx和NetScaler区别
流浪鱼
nginx
NetScaler是一个完整的包含操作系统和应用交付功能的产品,Nginx并不包含操作系统,在处理连接方面,需要依赖于操作系统,所以在并发连接数方面和防DoS攻击方面,Nginx不具备优势。
2.易用性方面差别也比较大。Nginx对管理员的水平要求比较高,参数比较多,不确定性给运营带来隐患。在NetScaler常见的配置如健康检查,HA等,在Nginx上的配置的实现相对复杂。
3.策略灵活度方
- 第11章 动画效果(下)
onestopweb
动画
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/
- FAQ - SAP BW BO roadmap
blueoxygen
BOBW
http://www.sdn.sap.com/irj/boc/business-objects-for-sap-faq
Besides, I care that how to integrate tightly.
By the way, for BW consultants, please just focus on Query Designer which i
- 关于java堆内存溢出的几种情况
tomcat_oracle
javajvmjdkthread
【情况一】:
java.lang.OutOfMemoryError: Java heap space:这种是java堆内存不够,一个原因是真不够,另一个原因是程序中有死循环; 如果是java堆内存不够的话,可以通过调整JVM下面的配置来解决: <jvm-arg>-Xms3062m</jvm-arg> <jvm-arg>-Xmx
- Manifest.permission_group权限组
阿尔萨斯
Permission
结构
继承关系
public static final class Manifest.permission_group extends Object
java.lang.Object
android. Manifest.permission_group 常量
ACCOUNTS 直接通过统计管理器访问管理的统计
COST_MONEY可以用来让用户花钱但不需要通过与他们直接牵涉的权限
D