gluon
Here are 170 public repositories matching this topic...
-
Updated
Aug 13, 2019 - Jupyter Notebook
I tried building the docs, but was met with a graphviz error. Typically this means I can spend a few hours pecking away at the dependencies until I get stable build... or someone that has it working can export their environment, and publish an environment.yml that we can use with the build instructions.
I was going off of the d2l book since that's a dep here, but their [environment.yml](https://g
Hi there and thanks for this product. Currently, I see zero build instructions overall. How to install just Gluon on my computer, so I can work with it? Cooperating with Rust is a non-goal by now and it seems the current Readme assumes I am a Rust developer and familiar with its package system.
I think we can remove the check of mutable_args in the get_model API for BERT, GPT, Language model and transformer. We can introduce a separate flag "allow_override" if users want to override any configuration. Otherwise overriding any configuration is forbidden.
-
Updated
Jun 9, 2020 - Python
-
Updated
Jun 8, 2020 - Python
Great work!
I discovered in https://github.com/arogozhnikov/einops/blob/master/einops/einops.py#L199 that you also support ellipsis. Its an important feature so you may want to add it to the documentation.
Is:
- Gluon's documentation is in English.
Should:
- Gluon's documentation is in German, too
Ideas & Remarks:
- Every now and then I encounter people not speaking English. Gluon's doc is a barrier here, while Freifunk is focussing on transporting knowledge.
- For doing translations it is good to have seperated tracking process. Usually, people doing translations are different from peopl
-
Updated
Apr 14, 2020 - Python
There are several questions which repeatedly come up and should be addressed in the Documentation
- How to build / import
ApolloClient(see #57) - Recommended settings for said client
- Why doesn't my component ever enter
loadingstate (fetchPolicyrelated) - Why doesn't my component render (in next major version, a breaking change should remove the logic around rendering and alway
-
Updated
May 29, 2020 - C#
-
Updated
Nov 20, 2017 - Jupyter Notebook
-
Updated
Mar 27, 2020 - Python
-
Updated
Jun 12, 2019 - Python
你好,我按照你的方法制作了多目标检测的.rec和.idx文件,但是读取的时候出现 Encounter sample with no valid label 错误,能帮我看一下吗?多谢了
这是我生成.lst文件的程序
with open('dataset/dataset.lst', 'w+') as f:
----f.truncate()
----for i in range(len(labels)):
--------lst = str(i) + '\t' + str(4) + '\t' + str(5) + '\t' + str(1360) + '\t' + str(800) + '\t'
--------for label in labels[i]:
------------lst += str(label[4]) + '\t' + str(round(label[0]/
-
Updated
May 28, 2020 - Jupyter Notebook
-
Updated
Apr 16, 2020 - Python
-
Updated
Dec 24, 2017 - Jupyter Notebook
-
Updated
Feb 28, 2018 - Jupyter Notebook
-
Updated
Feb 23, 2020 - Python
-
Updated
Mar 12, 2020 - Jupyter Notebook
-
Updated
Jul 27, 2018 - Jupyter Notebook
Improve this page
Add a description, image, and links to the gluon topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gluon topic, visit your repo's landing page and select "manage topics."




Hi, thanks for the great code!
I wonder do you have plans to support resuming from checkpoints for classification? As we all know, in terms of training ImageNet, the training process is really long and it can be interrupted somehow, but I haven't notice any code related to "resume" in
scripts/classification/train_imagenet.py.Maybe @hetong007 ? Thanks in advance.