-
Updated
Feb 28, 2022
linear-regression
Here are 5,109 public repositories matching this topic...
-
Updated
Dec 14, 2019 - Jupyter Notebook
-
Updated
Sep 26, 2021 - Jupyter Notebook
-
Updated
Dec 3, 2021 - Jupyter Notebook
-
Updated
Jun 21, 2022 - Jupyter Notebook
-
Updated
Mar 14, 2017 - Python
Yolov3 slow?
with video_demo.py about 20% speed compared to your 1.0 repo. but thanks much for sharing!
-
Updated
Apr 18, 2016 - Jupyter Notebook
-
Updated
Jan 23, 2022 - Jupyter Notebook
-
Updated
Nov 1, 2019 - C++
-
Updated
Jul 8, 2020 - MATLAB
-
Updated
Jun 21, 2022 - Jupyter Notebook
-
Updated
Aug 29, 2020 - Jupyter Notebook
-
Updated
May 11, 2022 - Jupyter Notebook
-
Updated
Jan 26, 2021 - Jupyter Notebook
-
Updated
Jun 21, 2022 - Python
-
Updated
Apr 18, 2022 - TypeScript
-
Updated
Oct 10, 2019 - Jupyter Notebook
-
Updated
Jun 22, 2022 - Python
-
Updated
Jun 7, 2021 - CSS
-
Updated
Jun 22, 2022 - Jupyter Notebook
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
May 15, 2017 - MATLAB
-
Updated
May 11, 2020 - Jupyter Notebook
-
Updated
Mar 15, 2019 - Jupyter Notebook
License.md
Today i add a license for this repository.
-
Updated
Apr 27, 2022 - 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)))