Huangbo
Huangbo
@silvio2402, thank for your checking. I have removed `| replace: '%20', ' '` in the latest commit
I found that: 1. Fastapi generate `hero` object from request body by function `fastapi.dependencies.utils.request_body_to_args`, and actually generate `hero` by this line `v_, errors_ = field.validate(value, values, loc=loc)` 2. Then call...
> 可以看到,深蓝其实并不是一个很厉害的AI,因为它只搜索了12层,现在有名的 象棋旋风 等软件都可以超过这个搜索深度。深蓝的基本原理和本文介绍的方法类似,`不过由于深蓝的运算速度远高于我们现在的个人电脑`,并且他可以进行大量的并行运算,所以能达到比较高的棋力。我们的五子棋AI运算速度远低于深蓝的每秒2亿步,我在自己的MBP笔记本上大约每秒运算 3万步。可以认为深蓝作为一个早期的AI,靠的是堆硬件来提升棋力。 其中,`不过由于深蓝的运算速度远高于我们现在的个人电脑` 这句可能存在错误。 [维基百科-深蓝 (超级电脑)](https://zh.wikipedia.org/wiki/%E6%B7%B1%E8%97%8D_(%E8%B6%85%E7%B4%9A%E9%9B%BB%E8%85%A6))中提到: >1997年6月,深蓝在世界超级电脑中排名第259位,计算能力为11.38 gigaflops。 [维基百科-每秒浮点运算次数](https://zh.wikipedia.org/wiki/%E6%B7%B1%E8%97%8D_(%E8%B6%85%E7%B4%9A%E9%9B%BB%E8%85%A6))中的近几年一些 CPU 的浮点运算能力列表: > - Intel Core 2 Duo E8400 24 GFLOPS > - AMD Phenom 9950: 29.05 GFLOPS...
Because I update some rows of my database table in other application per day, I have to update the index manually per day. ( Is that right? database update in...
@techschool Thanks for your reply, your solution do save me! I understand now that register validator in `init()` function make sure `RegisterValidation` called only once. But I'm still confused why...
I have a same issue。 example model: ```python class BaseModel(models.Model): created_at = fields.DatetimeField(auto_now_add=True, description='创建时间') updated_at = fields.DatetimeField(auto_now=True, description='修改时间') class Meta: abstract = True class Meta(BaseModel): id = fields.IntField(pk=True) custom_id =...
Same problem, this bug has not been fixed until `version 2.0.1`
According to [README](https://github.com/aio-libs/aioredis-py/blob/master/README.md), aioredis is now in redis-py 4.2.0rc1+. So you should use `redis` instead of `aioredis`. ``` python from redis import asyncio as aioredis ``` But there seems to...
> I am with the same error using integration with Next.js with plugin @mateusfg7 You can try my solution to see if it can resolve your problem. If this is...
> Based on the information I have seen so far, it seems that the problem is still unknown. My suggestion is to remove the plug-in configuration in `next.config.js` and try...