Results 13 issues of Triaaa

我参与的项目中需要每次同时处理两张图像,于是我将两张图像拼接为一张输入到faceboxes中,但这种方式的时间开销比分别处理两张图像所需的时间更大。有没有更加推荐的方式呢?

I want to build the project on the aarch64 platform, but the following error occurs: ![image](https://user-images.githubusercontent.com/52828870/223714880-e2fbccb4-4ecb-46d7-8c5a-9941cd61f66e.png) Weird, the platform I set is aarch64, but it shows x86_64 here? Below is...

I try to convert [sakila/sakila-mv-schema.sql](https://github.com/datacharmer/test_db/blob/master/sakila/sakila-mv-schema.sql) to DBML format, but in this file There are a lot of `DELIMITER`. When `sql2dbml` encounters these symbols, the following error will appear: ```bash $...

Link to #146. Doing ci testing in aarch64 environment with [run-on-arch-action](https://github.com/uraimo/run-on-arch-action), it's really slow, is there any other way to replace it?

size/M
compiler

Use gpt to automate the invocation of relevant tools to perform performance analysis on the local computer. Through the agent to develop the analysis steps, and according to the given...

enhancement

Write the `pyproject.toml` file to build the project. Then upload the packaged project to pypi. This allows users to easily complete the installation process by doing something like `pip install...

enhancement

Running environment: Windows11 x86_64 protobuf-26.1 C++ I installed the 26.1 version of protobuf and compiled it through Visual Studio 2022. Subsequently, I added `\protobuf-26.1\src\google` and `protobuf-26.1\third_party\abseil-cpp\absl` to the include files,...

untriaged
inactive

When I download s1_america.tar.gz dataset using the script provided by this project, I get the following error: ```shell --2024-04-20 22:01:06-- https://dataserv.ub.tum.de/s/m1639953/download?path=/&files=s1_america.tar.gz Connecting to 172.22.112.1:7890... connected. WARNING: cannot verify dataserv.ub.tum.de's certificate,...

在第25节中关于[脏写](https://relph1119.github.io/mysql-learning-notes/#/mysql/24-%E4%B8%80%E6%9D%A1%E8%AE%B0%E5%BD%95%E7%9A%84%E5%A4%9A%E5%B9%85%E9%9D%A2%E5%AD%94-%E4%BA%8B%E5%8A%A1%E7%9A%84%E9%9A%94%E7%A6%BB%E7%BA%A7%E5%88%AB%E4%B8%8EMVCC?id=%e4%ba%8b%e5%8a%a1%e5%b9%b6%e5%8f%91%e6%89%a7%e8%a1%8c%e9%81%87%e5%88%b0%e7%9a%84%e9%97%ae%e9%a2%98)的图示为: ![image](https://github.com/user-attachments/assets/0bd40c73-eea1-427e-89d0-8d1ae7c66b54) 文中提到“Session B中的事务进行回滚后 Session A 中的更新也将不复存在。这时Session A中的事务就很懵逼,我明明把数据更新了,最后也提交事务了,怎么到最后说自己什么也没干呢?” 文中也提到:“如果**一个事务修改了另一个未提交事务修改过的数据**,那就意味着发生了脏写”。对应到这个例子,应该是A的提交覆盖了B的修改,由于A提交后数据生效了,B无法对已提交的数据进行回滚,那么A的更新应该不会受回滚的影响。 即A并非什么都没干,相反,它的修改是生效的?

您好,代码中训练部分的注释是 `###### Predictor&Corrector train ######`,但是在代码实现上似乎并没有使用到corrector,那么corrector对这个模型的训练是否有益处呢?