Skip to content

Neuraxle refactor #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f355cee
Merge pull request #1 from guillaume-chevalier/master
guillaume-chevalier Nov 1, 2019
fc5b7a9
Integrate Neuraxle In LSTM Human Activity Recognition Wip
alexbrillant Nov 1, 2019
c354c5c
Add Fitted Pipeline Saving Call
alexbrillant Nov 2, 2019
4688416
Add Api Serving Demonstration Code
alexbrillant Nov 3, 2019
db28a90
Extract Human Activity Recognition Pipeline Inside a Seprate File
alexbrillant Nov 3, 2019
5c80cb0
Add requirements.txt, and Fix TransformExpectedOutputWrapper, And LST…
alexbrillant Nov 3, 2019
654c433
Refactor Graph Forward Wip
alexbrillant Nov 3, 2019
6c115ef
Add Variable Scope, And Placeholder Names
alexbrillant Nov 3, 2019
44ccad8
Fix Tensorflow Graph Setup Initialization
alexbrillant Nov 3, 2019
4ba8e5a
Setup tensorflow model wrapper once
alexbrillant Nov 3, 2019
53e54de
Use step.sess in tensorflowv1stepsaver
alexbrillant Nov 3, 2019
85d8ced
Use Default Graph In Tf Session, And Use Default Graph In Tensorflow …
alexbrillant Nov 4, 2019
d5e4020
Add Demonstration Notebook For Pipeline Saving, And Loading For Api S…
alexbrillant Nov 4, 2019
84b360b
Add Neuraxle Commit Version To Requirements.txt
alexbrillant Nov 4, 2019
5c6ec1d
Update requirements to avoid numpy version failure, and add example A…
guillaume-chevalier Nov 5, 2019
348f28a
Edit Call Api notebook for gucci
alexbrillant Nov 5, 2019
e288133
Update Demonstration Notebooks
alexbrillant Nov 5, 2019
7b34230
Fix Notebook Demonstration
alexbrillant Nov 5, 2019
b0a0654
Added things to make it work.
guillaume-chevalier Nov 5, 2019
27565e3
Merge branch 'neuraxle-refactor' of github.com:Neuraxio/LSTM-Human-Ac…
guillaume-chevalier Nov 5, 2019
e200823
remove print bug
guillaume-chevalier Nov 5, 2019
16a8856
Improved examples
guillaume-chevalier Nov 5, 2019
67144b9
update README temporarily for clarity of the demo of the prototype.
guillaume-chevalier Nov 5, 2019
2fceeb6
Clean code a bit
guillaume-chevalier Nov 5, 2019
1c74c61
Fix neuraxle.steps.numpy OneHotEncoder imports
alexbrillant Nov 20, 2019
e4d2c99
Rerun notebooks with fixed neuraxle imports
alexbrillant Nov 20, 2019
6856be6
Add tensorflow-gpu in requirements.txt
alexbrillant Nov 20, 2019
d6aa641
Clean Example Using Neuraxle-Tensorflow
alexbrillant Jan 7, 2020
cfdd545
Wip Use Deep Learning Pipeline
alexbrillant Jan 11, 2020
09e8e09
Add Accuracy Metric Plotting With Deep Learning Pipeline
alexbrillant Jan 11, 2020
866619b
Extract plotting function to a file
alexbrillant Jan 11, 2020
cb08c95
Wip update notebook
alexbrillant Jan 12, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
.ipynb_checkpoints
___*
neuraxle/**
steps/__pycache__/**
savers/__pycache__/**
__pycache__/**
.idea/**
steps/one_hot_encoder.py
steps/transform_expected_output_only_wrapper.py
venv/**
cache/**
Loading