-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
62 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Ch 3: Linear Regression | ||
|
||
1. [Using the Matrix Inverse Method](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/01_lin_reg_inverse.py) | ||
2. [Implementing a Decomposition Method](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/02_lin_reg_decomposition.py) | ||
3. [Learning the Tensorflow Way of Linear Regression](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/03_lin_reg_tensorflow_way.py) | ||
4. [Understanding Loss Functions in Linear Regression](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/04_lin_reg_l1_vs_l2.py) | ||
5. [Implementing Deming Regression (Total Regression)](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/05_deming_regression.py) | ||
6. [Implementing Lasso and Ridge Regression](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/06_lasso_and_ridge_regression.py) | ||
7. [Implementing Elastic Net Regression](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/07_elasticnet_regression.py) | ||
8. [Implementing Logistic Regression](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/03_Linear_Regression/08_logistic_regression.py) | ||
1. [Using the Matrix Inverse Method](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/01_Using_the_Matrix_Inverse_Method) | ||
2. [Implementing a Decomposition Method](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/02_Implementing_a_Decomposition_Method) | ||
3. [Learning the Tensorflow Way of Linear Regression](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/03_Tensorflow_Way_of_Linear_Regression) | ||
4. [Understanding Loss Functions in Linear Regression](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/04_Loss_Functions_in_Linear_Regressions) | ||
5. [Implementing Deming Regression (Total Regression)](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/05_Implementing_Deming_Regression) | ||
6. [Implementing Lasso and Ridge Regression](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/06_Implementing_Lasso_and_Ridge_Regression) | ||
7. [Implementing Elastic Net Regression](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/07_Implementing_Elasticnet_Regression) | ||
8. [Implementing Logistic Regression](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/03_Linear_Regression/08_Implementing_Logistic_Regression) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Ch 4: Support Vector Machines | ||
|
||
1. Introduction | ||
2. [Working with Linear SVMs](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/04_Support_Vector_Machines/01_linear_svm.py) | ||
3. [Reduction to Linear Regression](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/04_Support_Vector_Machines/02_support_vector_regression.py) | ||
4. [Working with Kernels in Tensorflow](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/04_Support_Vector_Machines/03_svm_kernels.py) | ||
5. [Implmenting Non-Linear SVMs](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/04_Support_Vector_Machines/04_nonlinear_svm.py) | ||
6. [Implementing Multi-class SVMs](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/04_Support_Vector_Machines/05_multiclass_svm.py) | ||
1. [Introduction](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/04_Support_Vector_Machines/01_Introduction) | ||
2. [Working with Linear SVMs](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/04_Support_Vector_Machines/02_Working_with_Linear_SVMs) | ||
3. [Reduction to Linear Regression](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/04_Support_Vector_Machines/03_Reduction_to_Linear_Regression) | ||
4. [Working with Kernels in Tensorflow](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/04_Support_Vector_Machines/04_Working_with_Kernels) | ||
5. [Implmenting Non-Linear SVMs](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/04_Support_Vector_Machines/05_Implementing_Nonlinear_SVMs) | ||
6. [Implementing Multi-class SVMs](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/04_Support_Vector_Machines/06_Implementing_Multiclass_SVMs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Ch 5: Nearest Neighbor Methods | ||
|
||
1. Introduction | ||
2. [Working with Nearest Neighbors](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/05_Nearest_Neighbor_Methods/01_nearest_neighbor.py) | ||
3. [Working with Text Based Distances](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/05_Nearest_Neighbor_Methods/02_text_distances.py) | ||
4. [Computing Mixing Distance Functions](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/05_Nearest_Neighbor_Methods/03_mixed_distance_functions_knn.py) | ||
5. [Using Address Matching](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/05_Nearest_Neighbor_Methods/04_address_matching.py) | ||
6. [Using Nearest Neighbors for Image Recognition](https://github.com/nfmcclure/tensorflow_cookbook/blob/master/05_Nearest_Neighbor_Methods/05_image_recognition.py) | ||
1. [Introduction](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/05_Nearest_Neighbor_Methods/01_Introduction) | ||
2. [Working with Nearest Neighbors](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/05_Nearest_Neighbor_Methods/02_Working_with_Nearest_Neighbors) | ||
3. [Working with Text Based Distances](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/05_Nearest_Neighbor_Methods/03_Working_with_Text_Distances) | ||
4. [Computing Mixing Distance Functions](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/05_Nearest_Neighbor_Methods/04_Computing_with_Mixed_Distance_Functions) | ||
5. [Using Address Matching](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/05_Nearest_Neighbor_Methods/05_An_Address_Matching_Example) | ||
6. [Using Nearest Neighbors for Image Recognition](https://github.com/nfmcclure/tensorflow_cookbook/tree/master/05_Nearest_Neighbor_Methods/06_Nearest_Neighbors_for_Image_Recognition) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.