-
Updated
May 19, 2020 - Python
regression
Here are 1,942 public repositories matching this topic...
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)))
-
Updated
May 21, 2020 - Java
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
Feb 18, 2019 - Python
This is a good first issue and will help new contributors to get familiar with the codebase. Also This issue doesn't aim to add all Metrics to mlpack since each metric would have to be maintained, this aims to add metrics that either I find essential (or have used a couple of time) or those metrics which are very common.
List of metrics that can be added include:
- IoU and meanIoU
From the docs for https://simplestatistics.org/docs/#standardnormaltable:
The table used is the cumulative, and not cumulative from 0 to mean.
I'm having trouble understanding this sentence. What is meant by cumulative and not cumulative?
The help currently reads:
Vector S get; set;
Gets the singular values (Σ) of matrix in ascending value.
It should be:
descending order of magnitude.
-
Updated
Jan 28, 2020 - Jupyter Notebook
-
Updated
May 11, 2020 - PHP
-
Updated
May 21, 2020 - R
-
Updated
Apr 11, 2020 - Jupyter Notebook
-
Updated
Apr 29, 2020 - C++
我发现一些有疑问的地方
-
Updated
Apr 13, 2020 - Python
-
Updated
May 12, 2020 - OCaml
-
Updated
May 13, 2020 - PHP
From alan-turing-institute/MLJBase.jl#68:
This doesn't work:
@mlj_model mutable struct Bar
a::Int = -1::(_ > -2)
end
But this does:
@mlj_model mutable struct Bar
a::Int = (-)(1)::(_ > -2)
end
This needs to be documented in MLJ/docs/src/adding_models_for_general_use and MLJ/docs/src/quick_start_guide_to_adding_models
Hi @JavierAntoran @stratisMarkou,
First of all, thanks for making all of this code available - it's been great to look through!
Im currently spending some time trying to work through the Weight Uncertainty in Neural Networks in order to implement Bayes-by-Backprop. I was struggling to understand the difference between your implementation of `Bayes-by-Bac
-
Updated
Dec 22, 2018 - MATLAB
I would be great if more examples of NeuralNetwork classes eg. MultiLayerPerceptron or using BackPropagation algo are created with examples.
May be Below link example can be implementated -
https://ujjwalkarn.me/2016/08/09/quick-intro-neural-networks/
-
Updated
Nov 11, 2017 - C
-
Updated
Apr 6, 2020 - Python
-
Updated
May 21, 2020 - HTML
-
Updated
Apr 28, 2020 - Python
-
Updated
Sep 25, 2017 - Python
-
Updated
Mar 2, 2020 - HTML
Improve this page
Add a description, image, and links to the regression topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the regression 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..