-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
6725d62
commit 711b3cf
Showing
2 changed files
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Hello, welcome to my Machine Learning practice portfolio | ||
|
||
The goal of this repository is for me to practice machine learning. | ||
Either by implementing them from scratch, or by using libraries (like Tensorflow) to implement more complex architectures. | ||
|
||
You can also find here my solutions to the Textbook "Hands-On Machine Learning with Scikit-Learn and TensorFlow". |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
language: python | ||
python: | ||
- "3.7" | ||
#install: | ||
# - pip install -r requirements.txt | ||
script: | ||
- python -m unittest discover dataset "*_test.py" | ||
- python -m unittest discover knearestneighbour "*_test.py" | ||
- python -m unittest discover linearclassifier "*_test.py" | ||
- python -m unittest discover neuralnetwork "*_test.py" | ||
- python -m unittest discover supportvectormachine "*_test.py" | ||
|