[PR #224] [CLOSED] Fix quote sign in 07_Logistic_Regression.ipynb #250

Closed
opened 2025-11-02 00:11:39 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/GokuMohandas/Made-With-ML/pull/224
Author: @martin-liu
Created: 3/19/2023
Status: Closed

Base: mainHead: patch-1


📝 Commits (1)

  • 21db8fc Fix quote sign in 07_Logistic_Regression.ipynb

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 notebooks/07_Logistic_Regression.ipynb (+1 -1)

📄 Description

Fix quote conflicts, from

print (f"train m:b = {train_class_counts["malignant"]/train_class_counts["benign"]:.2f}")

To

print (f"""train m:b = {train_class_counts["malignant"]/train_class_counts["benign"]:.2f}""")

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/GokuMohandas/Made-With-ML/pull/224 **Author:** [@martin-liu](https://github.com/martin-liu) **Created:** 3/19/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `patch-1` --- ### 📝 Commits (1) - [`21db8fc`](https://github.com/GokuMohandas/Made-With-ML/commit/21db8fc97ec86fbc4597c703b9945f52f4bf2d49) Fix quote sign in 07_Logistic_Regression.ipynb ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `notebooks/07_Logistic_Regression.ipynb` (+1 -1) </details> ### 📄 Description Fix quote conflicts, from ```python print (f"train m:b = {train_class_counts["malignant"]/train_class_counts["benign"]:.2f}") ``` To ```python print (f"""train m:b = {train_class_counts["malignant"]/train_class_counts["benign"]:.2f}""") ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 00:11:39 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/Made-With-ML#250