<properties> <hudson.security.AuthorizationMatrixProperty> <inheritanceStrategy class="org.jenkinsci.plugins.matrixauth.inheritance.InheritParentStrategy"/> <permission>USER:hudson.model.Item.Read:anonymous</permission> </hudson.security.AuthorizationMatrixProperty> <jenkins.model.BuildDiscarderProperty> <strategy class="hudson.tasks.LogRotator"> <daysToKeep>90</daysToKeep> <numToKeep>-1</numToKeep> <artifactDaysToKeep>30</artifactDaysToKeep> <artifactNumToKeep>-1</artifactNumToKeep> </strategy> </jenkins.model.BuildDiscarderProperty> <com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty plugin="gitlab-plugin@1.7.7"> <gitLabConnection>src.ift.run</gitLabConnection> <jobCredentialId/> <useAlternativeCredential>false</useAlternativeCredential> </com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty> <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.34"> <autoRebuild>false</autoRebuild> <rebuildDisabled>false</rebuildDisabled> </com.sonyericsson.rebuild.RebuildSettings> <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@2.11"> <maxConcurrentPerNode>3</maxConcurrentPerNode> <maxConcurrentTotal>0</maxConcurrentTotal> <categories class="java.util.concurrent.CopyOnWriteArrayList"/> <throttleEnabled>true</throttleEnabled> <throttleOption>project</throttleOption> <limitOneJobWithMatchingParams>false</limitOneJobWithMatchingParams> <paramsToUseForLimit/> <configVersion>1</configVersion> </hudson.plugins.throttleconcurrents.ThrottleJobProperty> <jenkins.branch.RateLimitBranchProperty_-JobPropertyImpl plugin="branch-api@2.1071.v1a_188a_562481"> <durationName>hour</durationName> <count>40</count> <userBoost>true</userBoost> </jenkins.branch.RateLimitBranchProperty_-JobPropertyImpl> </properties> 请解释这一段jenkins配置

时间: 2023-12-12 07:03:37 浏览: 215
这是一个Jenkins的配置文件,其中包含了一些插件和属性的设置。让我逐个解释每个部分的含义: 1. `<hudson.security.AuthorizationMatrixProperty>`:这个属性定义了Jenkins的授权矩阵,用于管理用户对项目的权限。在这个例子中,允许匿名用户对项目进行读取操作。 2. `<jenkins.model.BuildDiscarderProperty>`:这个属性定义了构建丢弃策略,用于控制构建历史的保存和删除。在这个例子中,使用了一个`hudson.tasks.LogRotator`策略,该策略会保留最近90天的构建日志,并且不限制保存的构建数量。 3. `<com.dabsquared.gitlabjenkins.connection.GitLabConnectionProperty>`:这个属性是GitLab插件的设置,用于与GitLab服务器建立连接。在这个例子中,指定了GitLab服务器的地址为`src.ift.run`,并且没有指定作业凭据。 4. `<com.sonyericsson.rebuild.RebuildSettings>`:这个属性是重新构建插件的设置,用于控制是否启用自动重新构建功能。在这个例子中,禁用了自动重新构建功能。 5. `<hudson.plugins.throttleconcurrents.ThrottleJobProperty>`:这个属性是限制并发作业插件的设置,用于控制并发作业的数量。在这个例子中,限制每个节点同时运行的作业数量为3个,并且禁止全局并发限制。 6. `<jenkins.branch.RateLimitBranchProperty_-JobPropertyImpl>`:这个属性是分支限制插件的设置,用于控制并发构建分支的数量。在这个例子中,限制每小时只能构建40个分支,并且允许用户提高并发限制。 这些配置属性可以根据需求进行修改,以满足特定的Jenkins项目需求。
阅读全文

相关推荐

<builders> <org.jenkinsci.plugins.conditionalbuildstep.singlestep.SingleConditionalBuilder plugin="conditional-buildstep@1.4.2"> <condition class="org.jenkins_ci.plugins.run_condition.contributed.ShellCondition" plugin="run-condition@1.5"> <command>if git show --summary HEAD | grep -q -E "\(cherry picked from commit \b[0-9a-f]{5,40}\b\)"; then exit 1 fi</command> </condition> <buildStep class="hudson.tasks.Shell"> <command>./scripts/checkpatch.pl --min-conf-desc-length=1 --ignore GERRIT_CHANGE_ID -g HEAD </command> <configuredLocalRules/> </buildStep> <runner class="org.jenkins_ci.plugins.run_condition.BuildStepRunner$Run" plugin="run-condition@1.5"/> </org.jenkinsci.plugins.conditionalbuildstep.singlestep.SingleConditionalBuilder> <hudson.tasks.Shell> <command>NCPU=$(expr $(nproc --all ) / 2) make O=build-${BUILD_ID} -s defconfig make O=build-${BUILD_ID} -j$NCPU -s Image make O=build-${BUILD_ID} -j$NCPU -s modules make O=build-${BUILD_ID} INSTALL_MOD_PATH=../install-${BUILD_ID} -s modules_install mkdir -p install-${BUILD_ID}/boot/ KERNELVER=$(cat build-${BUILD_ID}/include/config/kernel.release 2> /dev/null) cat build-${BUILD_ID}/arch/arm64/boot/Image > install-${BUILD_ID}/boot/Image-$KERNELVER cp build-${BUILD_ID}/System.map install-${BUILD_ID}/boot/System.map-$KERNELVER cp build-${BUILD_ID}/.config install-${BUILD_ID}/boot/config-$KERNELVER tar -cJf install-${BUILD_ID}/linux-$KERNELVER.tar.xz -C install-${BUILD_ID}/ boot lib</command> <configuredLocalRules/> </hudson.tasks.Shell> <hudson.tasks.Shell> <command>cd $HOME/src/linux git fetch -p -t git pull </command> <configuredLocalRules/> </hudson.tasks.Shell> </builders> 这是一段Jenkins job的定义,请把它转成对应的JJB的yaml格式配置文件

Fetching upstream changes from git@github. com:a792883583/treeHoleScore.git > /usr/bin/git --version # timeout=10 > git --version # 'git version 1.8.3.1' using GIT _ASKPASS to set credentials github > /usr/bin/git fetch --tags --progress git@github. com:a792883583/treeHoleScore.git +refs/heads/*:refs/remotes/origin/* # timeout=10 ERROR: Error fetching remote repo 'origin' hudson. plugins.git.GitException: Failed to fetch from git@github. com:a792883583/treeHoleScore.git at hudson. plugins . git .GitSCM. fetchFrom(GitSCM. java:1003) at hudson. plugins .git .GitSCM. retrieveChanges(GitSCM. java:1245) at hudson.plugins.git.GitsCM. checkout(GitSCM. java:1309) at hudson.scm. SCM. checkout(SCM. java:540) at hudson. mode1. AbstractProject . checkout(AbstractProject . java:1240) at hudson. model AbstractBuild$AbstractBuildExecution. def aultCheckout (AbstractBuild. java:649) at jenkins .scm. SCMCheckoutStrategy . checkout(SCMCheckoutStrategy . java:85) at hudson . model. AbstractBuild$AbstractBuildExecution. run(AbstractBuild. java:521) at hudson.model . Run. execute(Run. java:1900) at hudson.model. FreeSty1eBuild.run(FreeStyleBuild.java:44) at hudson. model. ResourceController . execute(ResourceController . java:101) at hudson. model. Executor .run(Executor. java:442) Caused by: hudson. plugins.git .GitException: Command "/usr/bin/git fetch --tags --progress git@github . com: a792883583/treeHoleScore.git +refs/heads/* :refs/remotes/origin/*" returned status code 128: stdout: stderr: Host key verification failed. fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. at org.jenkinsci .plugins.gitclient .CliGitAPIImp1.1aunchCommandIn(CliGitAPImp1.java:2734) at org.jenkinsci .plugins.gitclient .CliGitAPIImp1.1aunchCommandWithCredentials(CliGitAPIImpl.java:2111) at org.jenkinsci.plugins . gitclient .CliGitAPIImp1$1. execute(CliGitAPIImp1.java:623) at hudson.p1ugins . git .GitSCM. fetchFrom (GitSCM. java:1001) 11 more ERROR: Error fetching remote repo ' origin' Finished: FAILURE

ERROR: Launching agent process aborted. Also: java.lang.Throwable: launched here at hudson.slaves.SlaveComputer._connect(SlaveComputer.java:287) at hudson.model.Computer.connect(Computer.java:447) at hudson.slaves.SlaveComputer.tryReconnect(SlaveComputer.java:854) at hudson.slaves.RetentionStrategy$Always.check(RetentionStrategy.java:173) at hudson.slaves.RetentionStrategy$Always.check(RetentionStrategy.java:161) at hudson.slaves.ComputerRetentionWork$1.run(ComputerRetentionWork.java:71) at hudson.model.Queue._withLock(Queue.java:1397) at hudson.model.Queue.withLock(Queue.java:1271) at hudson.slaves.ComputerRetentionWork.doRun(ComputerRetentionWork.java:62) at hudson.triggers.SafeTimerTask.run(SafeTimerTask.java:92) at jenkins.security.ImpersonatingScheduledExecutorService$1.run(ImpersonatingScheduledExecutorService.java:67) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834) java.lang.InterruptedException: Validate configuration: The Host must be specified The selected credentials cannot be found at hudson.plugins.sshslaves.SSHLauncher.checkConfig(SSHLauncher.java:925) at hudson.plugins.sshslaves.SSHLauncher.launch(SSHLauncher.java:411) at hudson.slaves.SlaveComputer.lambda$_connect$0(SlaveComputer.java:298) at jenkins.util.ContextResettingExecutorService$2.call(ContextResettingExecutorService.java:46) at jenkins.security.ImpersonatingExecutorService$2.call(ImpersonatingExecutorService.java:80) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834)

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: WorkflowScript: 14: Invalid parameter "failFast", did you mean "unit"? @ line 14, column 50. eout(time: 48, unit: 'HOURS', failFast: ^ WorkflowScript: 16: Invalid step "parallel" used - not allowed in this context - The parallel step can only be used as the only top-level step in a stages step block @ line 16, column 6. parallel { ^ WorkflowScript: 18: Invalid step "stage" used - not allowed in this context - The stage step cannot be used in Declarative Pipelines @ line 18, column 7. stage('version-A35-2290000204') { ^ 3 errors at org.codehaus.groovy.control.ErrorCollector.failIfErrors(ErrorCollector.java:309) at org.codehaus.groovy.control.CompilationUnit.applyToPrimaryClassNodes(CompilationUnit.java:1107) at org.codehaus.groovy.control.CompilationUnit.doPhaseOperation(CompilationUnit.java:624) at org.codehaus.groovy.control.CompilationUnit.processPhaseOperations(CompilationUnit.java:602) at org.codehaus.groovy.control.CompilationUnit.compile(CompilationUnit.java:579) at groovy.lang.GroovyClassLoader.doParseClass(GroovyClassLoader.java:323) at groovy.lang.GroovyClassLoader.parseClass(GroovyClassLoader.java:293) at org.jenkinsci.plugins.scriptsecurity.sandbox.groovy.GroovySandbox$Scope.parse(GroovySandbox.java:163) at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.doParse(CpsGroovyShell.java:190) at org.jenkinsci.plugins.workflow.cps.CpsGroovyShell.reparse(CpsGroovyShell.java:175) at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.parseScript(CpsFlowExecution.java:568) at org.jenkinsci.plugins.workflow.cps.CpsFlowExecution.start(CpsFlowExecution.java:518) at org.jenkinsci.plugins.workflow.job.WorkflowRun.run(WorkflowRun.java:336) at hudson.model.ResourceController.execute(ResourceController.java:101) at hudson.model.Executor.run(Executor.java:442) Finished: FAILURE

Started by user admin Running as SYSTEM Building in workspace /var/jenkins_home/workspace/SGLD_SHIP_SYSTEM The recommended git tool is: NONE using credential 3daf7d0b-8918-4f92-9c5d-a3059a66a722 > git rev-parse --resolve-git-dir /var/jenkins_home/workspace/SGLD_SHIP_SYSTEM/.git # timeout=10 Fetching changes from the remote Git repository > git config remote.origin.url http://139.199.13.25:3000/shaofq/AG-SGLD-ILOG-1.0.git # timeout=10 Fetching upstream changes from http://139.199.13.25:3000/shaofq/AG-SGLD-ILOG-1.0.git > git --version # timeout=10 > git --version # 'git version 2.30.2' using GIT_ASKPASS to set credentials > git fetch --tags --force --progress -- http://139.199.13.25:3000/shaofq/AG-SGLD-ILOG-1.0.git +refs/heads/*:refs/remotes/origin/* # timeout=10 > git rev-parse refs/remotes/origin/master^{commit} # timeout=10 Checking out Revision 68b36471d8d68c7d5f6af47cd1c1025861e4cb03 (refs/remotes/origin/master) > git config core.sparsecheckout # timeout=10 > git checkout -f 68b36471d8d68c7d5f6af47cd1c1025861e4cb03 # timeout=10 Commit message: "feat:新增航线中文名维护" > git rev-list --no-walk 68b36471d8d68c7d5f6af47cd1c1025861e4cb03 # timeout=10 using settings config with name MySettings Replacing all maven server entries not found in credentials list is true [SGLD_SHIP_SYSTEM] $ /var/jenkins_home/tools/hudson.tasks.Maven_MavenInstallation/mymaven/bin/mvn -s /tmp/settings10948644921560376548.xml clean package -Pprod -Dmaven.test.skip=true -e Build step 'Invoke top-level Maven targets' marked build as failure Finished: FAILURE

最新推荐

recommend-type

使用Hudson进行持续集成.doc

**使用Hudson进行持续集成** Hudson是一款开源的持续集成工具,它可以帮助开发团队自动执行构建、测试和部署等任务,以确保软件项目的质量和稳定性。本文将详细介绍如何使用Hudson进行持续集成,主要涵盖以下几个...
recommend-type

ta-lib-0.5.1-cp312-cp312-win32.whl

ta_lib-0.5.1-cp312-cp312-win32.whl
recommend-type

在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计

课程设计 在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计
recommend-type

ta-lib-0.5.1-cp310-cp310-win-amd64.whl

ta_lib-0.5.1-cp310-cp310-win_amd64.whl
recommend-type

MATLAB实现小波阈值去噪:Visushrink硬软算法对比

资源摘要信息:"本资源提供了一套基于MATLAB实现的小波阈值去噪算法代码。用户可以通过运行主文件"project.m"来执行该去噪算法,并观察到对一张256x256像素的黑白“莱娜”图片进行去噪的全过程。此算法包括了添加AWGN(加性高斯白噪声)的过程,并展示了通过Visushrink硬阈值和软阈值方法对图像去噪的对比结果。此外,该实现还包括了对图像信噪比(SNR)的计算以及将噪声图像和去噪后的图像的打印输出。Visushrink算法的参考代码由M.Kiran Kumar提供,可以在Mathworks网站上找到。去噪过程中涉及到的Lipschitz指数计算,是基于Venkatakrishnan等人的研究,使用小波变换模量极大值(WTMM)的方法来测量。" 知识点详细说明: 1. MATLAB环境使用:本代码要求用户在MATLAB环境下运行。MATLAB是一种高性能的数值计算和可视化环境,广泛应用于工程计算、算法开发和数据分析等领域。 2. 小波阈值去噪:小波去噪是信号处理中的一个技术,用于从信号中去除噪声。该技术利用小波变换将信号分解到不同尺度的子带,然后根据信号与噪声在小波域中的特性差异,通过设置阈值来消除或减少噪声成分。 3. Visushrink算法:Visushrink算法是一种小波阈值去噪方法,由Donoho和Johnstone提出。该算法的硬阈值和软阈值是两种不同的阈值处理策略,硬阈值会将小波系数小于阈值的部分置零,而软阈值则会将这部分系数缩减到零。硬阈值去噪后的信号可能有更多震荡,而软阈值去噪后的信号更为平滑。 4. AWGN(加性高斯白噪声)添加:在模拟真实信号处理场景时,通常需要对原始信号添加噪声。AWGN是一种常见且广泛使用的噪声模型,它假设噪声是均值为零、方差为N0/2的高斯分布,并且与信号不相关。 5. 图像处理:该实现包含了图像处理的相关知识,包括图像的读取、显示和噪声添加。此外,还涉及了图像去噪前后视觉效果的对比展示。 6. 信噪比(SNR)计算:信噪比是衡量信号质量的一个重要指标,反映了信号中有效信息与噪声的比例。在图像去噪的过程中,通常会计算并比较去噪前后图像的SNR值,以评估去噪效果。 7. Lipschitz指数计算:Lipschitz指数是衡量信号局部变化复杂性的一个量度,通常用于描述信号在某个尺度下的变化规律。在小波去噪过程中,Lipschitz指数可用于确定是否保留某个小波系数,因为它与信号的奇异性相关联。 8. WTMM(小波变换模量极大值):小波变换模量极大值方法是一种小波分析技术,用于检测信号中的奇异点或边缘。该技术通过寻找小波系数模量极大值的变化来推断信号的局部特征。 9. 系统开源:该资源被标记为“系统开源”,意味着该MATLAB代码及其相关文件是可以公开访问和自由使用的。开源资源为研究人员和开发者提供了学习和实验的机会,有助于知识共享和技术发展。 资源的文件结构包括"Wavelet-Based-Denoising-MATLAB-Code-master",表明用户获取的是一套完整的项目文件夹,其中包含了执行小波去噪算法所需的所有相关文件和脚本。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【交互特征的影响】:分类问题中的深入探讨,如何正确应用交互特征

![【交互特征的影响】:分类问题中的深入探讨,如何正确应用交互特征](https://img-blog.csdnimg.cn/img_convert/21b6bb90fa40d2020de35150fc359908.png) # 1. 交互特征在分类问题中的重要性 在当今的机器学习领域,分类问题一直占据着核心地位。理解并有效利用数据中的交互特征对于提高分类模型的性能至关重要。本章将介绍交互特征在分类问题中的基础重要性,以及为什么它们在现代数据科学中变得越来越不可或缺。 ## 1.1 交互特征在模型性能中的作用 交互特征能够捕捉到数据中的非线性关系,这对于模型理解和预测复杂模式至关重要。例如
recommend-type

c语言从链式队列 中获取头部元素并返回其状态的函数怎么写

在 C 语言中,如果你有一个链式队列的数据结构,通常它会包含两个指针,一个指向队首(front),一个指向队尾(rear)。以下是一个简单的链式队列头部元素获取函数的示例,假设 `Queue` 是你的链式队列结构体,并且已经包含了必要的成员变量: ```c typedef struct Queue { void* data; // 存储数据的指针 struct Queue* front; // 队首指针 struct Queue* rear; // 队尾指针 } Queue; // 获取头部元素并检查是否为空(如果队列为空,返回 NULL 或适当错误值) void*
recommend-type

易语言实现画板图像缩放功能教程

资源摘要信息:"易语言是一种基于中文的编程语言,主要面向中文用户,其特点是使用中文关键词和语法结构,使得中文使用者更容易理解和编写程序。易语言画板图像缩放源码是易语言编写的程序代码,用于实现图形用户界面中的画板组件上图像的缩放功能。通过这个源码,用户可以调整画板上图像的大小,从而满足不同的显示需求。它可能涉及到的图形处理技术包括图像的获取、缩放算法的实现以及图像的重新绘制等。缩放算法通常可以分为两大类:高质量算法和快速算法。高质量算法如双线性插值和双三次插值,这些算法在图像缩放时能够保持图像的清晰度和细节。快速算法如最近邻插值和快速放大技术,这些方法在处理速度上更快,但可能会牺牲一些图像质量。根据描述和标签,可以推测该源码主要面向图形图像处理爱好者或专业人员,目的是提供一种方便易用的方法来实现图像缩放功能。由于源码文件名称为'画板图像缩放.e',可以推断该文件是一个易语言项目文件,其中包含画板组件和图像处理的相关编程代码。" 易语言作为一种编程语言,其核心特点包括: 1. 中文编程:使用中文作为编程关键字,降低了学习编程的门槛,使得不熟悉英文的用户也能够编写程序。 2. 面向对象:易语言支持面向对象编程(OOP),这是一种编程范式,它使用对象及其接口来设计程序,以提高软件的重用性和模块化。 3. 组件丰富:易语言提供了丰富的组件库,用户可以通过拖放的方式快速搭建图形用户界面。 4. 简单易学:由于语法简单直观,易语言非常适合初学者学习,同时也能够满足专业人士对快速开发的需求。 5. 开发环境:易语言提供了集成开发环境(IDE),其中包含了代码编辑器、调试器以及一系列辅助开发工具。 6. 跨平台:易语言支持在多个操作系统平台编译和运行程序,如Windows、Linux等。 7. 社区支持:易语言有着庞大的用户和开发社区,社区中有很多共享的资源和代码库,便于用户学习和解决编程中遇到的问题。 在处理图形图像方面,易语言能够: 1. 图像文件读写:支持常见的图像文件格式如JPEG、PNG、BMP等的读取和保存。 2. 图像处理功能:包括图像缩放、旋转、裁剪、颜色调整、滤镜效果等基本图像处理操作。 3. 图形绘制:易语言提供了丰富的绘图功能,包括直线、矩形、圆形、多边形等基本图形的绘制,以及文字的输出。 4. 图像缩放算法:易语言实现的画板图像缩放功能中可能使用了特定的缩放算法来优化图像的显示效果和性能。 易语言画板图像缩放源码的实现可能涉及到以下几个方面: 1. 获取画板上的图像:首先需要从画板组件中获取到用户当前绘制或已经存在的图像数据。 2. 图像缩放算法的应用:根据用户的需求,应用适当的图像缩放算法对获取的图像数据进行处理。 3. 图像重新绘制:处理后的图像数据需要重新绘制到画板上,以实现缩放后的效果。 4. 用户交互:提供用户界面,让用户能够通过按钮、滑块等控件选择缩放比例和模式,以及触发缩放操作。 5. 性能优化:为了确保图像缩放操作流畅,需要考虑代码的执行效率和资源的合理利用。 在易语言社区中,用户可以根据自己的需求修改和扩展画板图像缩放源码,或者根据提供的API进一步开发更多高级图像处理功能,从而丰富软件的功能和用户体验。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依