Kyle Tse

Results 53 issues of Kyle Tse

I have tried to tokenize (using other NLP tools) the Chinese articles and pass it into `FingerPrint->hash` function. I got two fingers: 0110010101101011111111100100110101011110000011101001000000000000 0111011101101011111100100100110111011110000001101011000000000000 index = 0.21626516682989 I don't understand...

https://github.com/danaugrs/huskarl/blob/8708d967dc7db785d5aac65c28b896a6d0739e45/huskarl/memory.py#L27 ``` def unpack(traces): """Returns states, actions, rewards, end_states, and a mask for episode boundaries given traces.""" states = [t[0].state for t in traces] actions = [t[0].action for t in...

Currently, it doesn't support `IterableCollection` as stated in the doc. https://caolan.github.io/async/v3/docs.html#eachOfLimit ```ts coll | Array \| Iterable \| AsyncIterable \| Object | A collection to iterate over. ``` I have...

question

``` Paragraph 1 Paragraph 2Paragraph 3 ``` As there is no root, how can I search the `p` and replace it? I tired to use `filter` and `replace`, but it...

I have multi site with different host running the same app. How can I make it dynamically setting in the app, since the config is built time setting.?

### Bug description > Environment variables loaded from .env > Prisma schema loaded from schema.prisma > Datasource "db": MySQL database "..." at "..." > > The migration `20220721213444_increase_url_length` was modified...

bug/1-unconfirmed
kind/bug
team/schema
topic: prisma migrate resolve

### Bug description Does `upsert` cannot work in `$transaction`? as it returns ` Prisma.Prisma__DataClient` instead of `PrismaPromise`. I tried to use `upsert` in transaction, but the executed `upsert` before error...

bug/1-unconfirmed
kind/bug
team/client

### Bug description I am finding many `findMany` with relation condition, resulting in super slow. ```ts await context.prisma.article.findMany({ where: { locale: { code: 'en', }, }, orderBy: { createdAt: 'desc',...

bug/1-unconfirmed
kind/bug
team/client
topic: performance/queries

### Describe the bug email and username should not using Chinese even in Chinese locale package. there is no one using Chinese as an email and username even in Chinese....

has workaround
s: awaiting more info
s: needs decision
c: locale
m: internet

It would be great if this project can provide us a progress helper to display progress logging on console. ``` [0/100] 0% some message [1/100] 1% doing some stuff.. ```...

enhancement