fnsflm

Results 10 comments of fnsflm

点击登录会跳转一个链接, 比如: `https://github.com/login/oauth/authorize?scope=public_repo&redirect_uri=https://myau.moe/2018/04/23/StarsManager/&client_id=27d3fea0ef621e9ff1e6&client_secret=1c953686c8acde73f925162eb81c229ab4b7ec58` 其中有个`redirect_uri`参数, 在登录完成后会跳转到这个链接上. 而在主题的配置文件`_config.yml`有redirect_uri这一下, 检查是否填错 ``` comment: gitment: owner: # 必填项, 你的GitHub ID repo: # 必填项 你的存储评论的repo名称(不是整个的地址) oauth: client_id: # 必填项 client_secret: # 必填项 redirect_uri: # 可以填也可以不填 ```...

> 对了还有一个问题 > ![TIM截图20200131131321](https://user-images.githubusercontent.com/54878757/73514184-aa51ee00-442b-11ea-9a9a-b68551b4284a.png) > 头像下面该怎么显示字? 在站点的`_config.yml`下修改description, 不是主题的config ```yml # Site title: Hello World subtitle: '' description: '' keywords: author: FNSFLM language: en timezone: '' ```

> favicon是怎么解决的 我想知道 ? 首先需要知道favicon在html中是如何生效的 在`gal/layout/_partial/head.ejs`中 ``下添加如下一行: ```html ``` 链接换成自己的icon 即可生效

我也遇到了类似的问题, 背景颜色不浅就会影响到文章的可读性 在`gal/source/css/_variables.scss`中定义了许多颜色的变量, 可以在此修改 ```scss $article-bg-color: rgba(230,238,232,0.5); $sidebar-panel-bg-color: rgba(230, 238, 232, 0.5); $search-breadcrumb-bg-color: rgba(230, 238, 232, 0.5); $comments-list-item-bg-color: rgba(230, 238, 232, 0.5); ``` 增加这些组件的透明度能解决该问题 对比: ![](https://cdn.jsdelivr.net/gh/fnsflmzqdydk/myPicbed/2021/01/24/004-5a5dea.jpg) ![](https://cdn.jsdelivr.net/gh/fnsflmzqdydk/myPicbed/2021/01/24/005-aff049.jpg)

> 我配置了,在本地 sudo hexo server -p 4001 能否看到? 我是直接在原来的本地仓库里面改的,加上这个 > > ``` > # 评论系统, 目前只支持gitment(为了自定义样式) > # 关于gitment如何配置看这篇 https://imsun.net/posts/gitment-introduction/ > # 如果不用的话要把下面的use_comment设置为false > comment: > gitment: > owner: 12345...

没, 这个项目以经至少两年没更新了, 所用的gitment评论区也停止维护了

batch_size是无法直接修改的,因为在data/dataset.py里定义的训练集Dataset将返回元素定义为`img, bbox, label, scale`而bbox的个数不同图片是不同的,维度不同的bbox无法合并成一个Tensor,这会引起torch.stack报错。需要去重新定义Dataset和读入图片及标签的逻辑才能修改batch_size。

That means the annotator thinks this picture has no target.

You can see it, https://pdollar.github.io/toolbox/ And click detector->bbGt. > Each object struct has the following fields: lbl - a string label describing object type (eg: 'pedestrian') bb - [l t...

下载原始的就好。他只是从中挑了一部分作为训练集测试集,名字路径没改动。