Skip to content

Commit

Permalink
Added a simple ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
georgepachitariu committed Oct 25, 2020
1 parent 6725d62 commit 711b3cf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
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".
12 changes: 12 additions & 0 deletions implementations-from-scratch/.travis.yml
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"

0 comments on commit 711b3cf

Please sign in to comment.