-
Updated
May 20, 2020 - Python
classification
Here are 4,434 public repositories matching this topic...
I tried some RNN regression learning based on the code in the "PyTorch-Tutorial/tutorial-contents/403_RNN_regressor.py" file, which did not work for me at all.
According to an accepted answer on stack-overflow (https://stackoverflow.com/questions/52857213/recurrent-network-rnn-wont-learn-a-very-simple-function-plots-shown-in-the-q?noredirect=1#comment92916825_52857213), it turns out that the li
-
Updated
Jun 13, 2020 - Python
-
Updated
Jun 11, 2020 - Java
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Apr 25, 2020
-
Updated
Feb 18, 2019 - Python
-
Updated
Jun 11, 2020 - JavaScript
-
Updated
May 19, 2019 - Python
-
Updated
Dec 16, 2019 - Python
Description
In some rare cases, for example, when you need to finetune a large model on a small dataset the majoring part of training loop is waiting for saving model checkpoints to a hard drive.
Proposal
Would be logically to add a CheckpointCallback with parameter save_n_best=0 to a configuration and do not store best checkpoints and instead use the latest state of the model.
In 'pointnet2/scannet/preprocessing/collect_scannet_scenes.py' line #17, we refer to 'scannet_all.txt' file. It would be helpful if you guide where to get or how to generate this file?
-
Updated
Jun 11, 2020 - Python
When following the manual install guide i had to install the following additional dependencies manually:
sudo apt-get install pulseaudio swig libpulse-dev libasound2-dev
sudo pip3 install pocketsphinx spidev
After, it all works great on Raspberry Pi Zero W!
-
Updated
May 29, 2020 - R
-
Updated
Apr 11, 2020 - Jupyter Notebook
Hi NVIDIA Team,
To make this project successful, I would like to suggest to add few things. I would love to assist on this.
- Complete technical installation steps to add more values
- Details of all pre-requisites, to build this project successfully.
- Overall technical background, design and architecture. Just like we provide a technical guide and documentation for other software engine
-
Updated
Apr 9, 2020 - Python
-
Updated
Mar 22, 2018 - Python
-
Updated
Jun 7, 2020 - C++
我发现一些有疑问的地方
-
Updated
May 29, 2020 - Python
-
Updated
Jun 11, 2020 - Python
Update diagrams
In experiments.rst, in the first diagram, I'm inferring that ovals are static resources and parallelograms are processes, and that dashed lines means optional. But if that's true, then I'm not sure what the meaning of purple vs. blue is, the scenes should be ovals and solid lines. It might be simpler and easier to parse if everything was a blue oval, although the dashed line makes sense. In the
-
Updated
May 7, 2020 - Python
-
Updated
May 13, 2019 - Python
Improve this page
Add a description, image, and links to the classification topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the classification topic, visit your repo's landing page and select "manage topics."


Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))