Skip to content

Commit

Permalink
chore: organizando arquivos em pastas
Browse files Browse the repository at this point in the history
  • Loading branch information
heltonricardo committed Dec 19, 2023
1 parent 6adc725 commit 0bc7f54
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test files
run: pytest test_train.py
run: pytest test/test_train.py

check_python_code_style:
name: Check Python code style
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def read_data():
"""
data = pd.read_csv(
"https://raw.githubusercontent.com/heltonricardo/"
"fetal-health-classifier/main/fetal_health_reduced.csv"
"fetal-health-classifier/main/data/fetal_health_reduced.csv"
)
X = data.drop(["fetal_health"], axis=1)
y = data["fetal_health"]
Expand Down

0 comments on commit 0bc7f54

Please sign in to comment.