Saul Zhang
Saul Zhang
712. 两个字符串的最小ASCII删除和(中等) python版本解法 ```python3 class Solution: ''' 问题等价: 求最长公共子序列的最大ASCII码值的和, ''' def minimumDeleteSum(self, s1: str, s2: str) -> int: dp = [[0]*(len(s2)+1) for _ in range(len(s1)+1)] for i in range(1,len(s1)+1): for...
Thanks for your answer. In These days,I also learned about your another paper《Unconstrained Fashion Landmark Detection via Hierarchical Recurrent Transformer Networks》.In this paper you proposed the DLAN which solving the...
I alse want to konw how to divide the data set.
I think the distribution of data in Chinese license plate is very different from the foreign‘s.
Bescuse the cv2.putText function cannot display the Chinese.You can PIL.ImageDraw library to achieve it.
 This is the result of my experiment. I divide the dataset with train:test=100k:100k, the same as the paper. But it seems that the performance is pretty poorer than the...
However, it is worth noting that although my experimental results are generally worse than the original one, the above items in data set "Weather" are superior to the original ones....
Hi, you can download the related file 'other_info.pkl' through the URL in readme.md--"3.dataset & pretrained model [word embedding matrix and the sentence length info of dataset]"
I have the same problem~