stevezkw1998

Results 17 issues of stevezkw1998

### MySQL架构 ![image](https://user-images.githubusercontent.com/53121066/109394304-47e65c80-7961-11eb-8390-9139b17f4afc.png) ### MySQL日志 错误日志:记录出错信息,也记录一些警告信息或者正确的信息。 查询日志:记录所有对数据库请求的信息,不论这些请求是否得到了正确的执行。 慢查询日志:设置一个阈值,将运行时间超过该值的所有SQL语句都记录到慢查询的日志文件中。 二进制日志:记录对数据库执行更改的所有操作。 中继日志:中继日志也是二进制日志,用来给slave 库恢复 事务日志:重做日志redo和回滚日志undo ### 主从复制 复制的基本原理 slave 会从 master 读取 binlog 来进行数据同步 三个步骤 master将改变记录到二进制日志(binary log)。这些记录过程叫做二进制日志事件,binary log events; salve 将 master 的...

这个问题是我自己根据笔记提出的,整理得出: 问题:说一下四种隔离级别的实现原理? 未提交读(Read Uncommited):啥都不做 (一级封锁协议 ----> 解决丢失修改) 提交读(Read Commited):二级封锁协议 ----> 解决脏读 可重复读(Repeatable Read): 三级封锁协议 ----> 解决不可重复读 可串行化(Serializable):强制事务串行执行 ----> 解决幻读问题

The code in static/index.html goes wrong while deploying `` There is no such path as /dist/bundle.js in static

``` (base) C:\code\Grounded-Segment-Anything>python run_grounded_sam_demo.py C:\code\Grounded-Segment-Anything\GroundingDINO\groundingdino\models\GroundingDINO\ms_deform_attn.py:31: UserWarning: Failed to load custom C++ ops. Running on CPU mode Only! warnings.warn("Failed to load custom C++ ops. Running on CPU mode Only!") Traceback (most...

bug

``` (base) C:\code\Grounded-Segment-Anything>python gradio_app.py Traceback (most recent call last): File "C:\code\Grounded-Segment-Anything\gradio_app.py", line 1, in import gradio as gr ModuleNotFoundError: No module named 'gradio' ``` It would be much better if...

``` root@46a091b7f167:/app# pip freeze | grep google google-api-core==2.14.0 google-api-python-client==1.12.11 google-auth==2.25.1 google-auth-httplib2==0.1.1 google-cloud-core==2.3.3 google-cloud-storage==2.13.0 google-crc32c==1.5.0 google-images-download==2.8.0 google-resumable-media==2.6.0 googleapis-common-protos==1.61.0 ``` The codes told the issue ```ipython In [1]: from google_images_download import google_images_download...

![image](https://github.com/kubeflow/community/assets/53121066/64acc43d-232d-4747-9803-a188bd47fe61)

My Dockerfile ``` FROM pytorch/pytorch:2.0.0-cuda11.7-cudnn8-runtime RUN apt-get update && apt-get install -y git gcc build-essential RUN mkdir /app WORKDIR /app # Install Pytorch Correlation RUN git clone https://github.com/ClementPinard/Pytorch-Correlation-extension.git RUN cd...

When will TaskMatrix provide free LLM options like LLaMA?

`pip install git+https://github.com/IDEA-Research/GroundingDINO.git` ![image](https://github.com/microsoft/TaskMatrix/assets/53121066/6759347d-2e8a-46c4-a404-bcb6e3016226) ``` RuntimeError: The detected CUDA version (12.1) mismatches the version that was used to compile PyTorch (11.7). Please make sure to use the same CUDA versions....