classification
Here are 3,928 public repositories matching this topic...
-
Updated
Dec 18, 2019 - Python
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)))
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
Dec 14, 2019 - Jupyter Notebook
-
Updated
Mar 16, 2020 - Python
-
Updated
Feb 18, 2019 - Python
-
Updated
Sep 30, 2019
-
Updated
May 19, 2019 - Python
-
Updated
Dec 16, 2019 - Python
Triplet loss epic
-
Updated
Oct 18, 2019 - Python
Hi,
in the docu of getTaskData it says under recode.target: "For survival, you may choose to recode the survival times to 'left', 'right' or 'interval2' censored times using 'lcens', 'rcens' or 'icens', respectively."
This is not consistent with the implementation. If one of these options is chosen, e.g.recode.target = "rcens", an error occurs. Instead, recode.traget = "surv" works. See
-
Updated
Jan 17, 2020 - Python
-
Updated
Mar 17, 2020 - Python
-
Updated
Mar 22, 2018 - Python
-
Updated
Feb 19, 2020 - Jupyter Notebook
-
Updated
Jan 24, 2020 - Python
-
Updated
Mar 13, 2020 - C++
-
Updated
Jan 28, 2020 - Python
Why we use converter/Identity.py and def convert_Identity for the torch.nn.Dropout in https://github.com/NVIDIA-AI-IOT/torch2trt/blob/master/torch2trt/converters/Identity.py
and convert_identity for torch.nn.functional.dropout in
https://github.com/NVIDIA-AI-IOT/torch2trt/blob/master/torch2trt/converters/identity.py
Is it because dropout returns an identical copy of the input tenso
-
Updated
Mar 10, 2020 - Python
-
Updated
Feb 28, 2020 - Python
-
Updated
May 13, 2019 - Python
Document the usage of a pretrained model that is available in our model zoo for training against the tiny spacenet quickstart example, to show model improvement through transfer learning via a similar task.
-
Updated
Mar 15, 2020 - Python
Description
Recently I found that normalized_table_calc function is too slow (more than 30% of the total execution time!!!) and it seems that the reason is the poor performance of numpy.around and built-in round function in scalar mode!!
I think, we should define our custom rounder function, something like this :
def custom_rounder(input_number,digit):
p =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."
i'm a newbie in programming. I try to use this library. it's very useful for me.
I want to show centroid in K-means clustering. how to show it? thank u so much..