-
Updated
Sep 30, 2020
linear-regression
Here are 2,931 public repositories matching this topic...
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Oct 7, 2020 - Jupyter Notebook
-
Updated
Jul 10, 2020 - Jupyter Notebook
-
Updated
Oct 3, 2020 - Jupyter Notebook
-
Updated
Mar 14, 2017 - Python
-
Updated
Apr 18, 2016 - Jupyter Notebook
Yolov3 slow?
with video_demo.py about 20% speed compared to your 1.0 repo. but thanks much for sharing!
-
Updated
Jul 15, 2020 - Jupyter Notebook
-
Updated
Nov 1, 2019 - C++
-
Updated
Jul 8, 2020 - MATLAB
-
Updated
Sep 11, 2018 - Python
-
Updated
Aug 29, 2020 - Jupyter Notebook
-
Updated
Oct 10, 2019 - Jupyter Notebook
-
Updated
Mar 9, 2019 - TypeScript
-
Updated
Oct 21, 2020 - Python
-
Updated
May 11, 2020 - Jupyter Notebook
-
Updated
Dec 3, 2019 - Jupyter Notebook
License.md
Today i add a license for this repository.
-
Updated
Mar 15, 2019 - Jupyter Notebook
-
Updated
Mar 21, 2019 - Jupyter Notebook
-
Updated
Sep 22, 2020 - CSS
-
Updated
Oct 13, 2020 - Java
-
Updated
Sep 1, 2020 - R
-
Updated
Nov 7, 2020 - Jupyter Notebook
-
Updated
Aug 28, 2018 - Swift
I see that many algorithms do have their readmes but do not have a (theoretical) explanation for the concerning algorithm. I would like to add content to such readmes.
-
Updated
Aug 30, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the linear-regression topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the linear-regression 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)))