-
Notifications
You must be signed in to change notification settings - Fork 110
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
Work in progress in migrating the TensorFlow.jl into the Julia 1.0.0 #419
Merged
Merged
Changes from 35 commits
Commits
Show all changes
64 commits
Select commit
Hold shift + click to select a range
c324df3
Fixes is_windows depreciation
adamryczkowski c661209
Fixes depreciations in the mv command
adamryczkowski 70d50d7
Replace info, warn & error with the macros
adamryczkowski ac2ad35
Replace info, warn & error with the macros
adamryczkowski c2e9b5e
Replace Void into Cvoid to avoid deprecation
adamryczkowski cb0bfec
Add Nullable dependency
adamryczkowski 03e058b
Add Nullable dependency
adamryczkowski d404c71
Another deprecation fix
adamryczkowski 6a6f45f
Another deprecation fix with ...
adamryczkowski 7b7c132
Complex64, Coplex128 -> ComplexF64, ComplexF128
adamryczkowski 447fef1
Complex64, Coplex128 -> ComplexF32, ComplexF64
adamryczkowski 3022797
Complex64, Coplex128 -> ComplexF32, ComplexF64
adamryczkowski 06b9a38
Iterator for OperationIterator converted to 1.0 syntax
adamryczkowski 42c4be7
Iterator for OperationIterator converted to 1.0 syntax
adamryczkowski df56552
Fix deprecations
femtocleaner[bot] 038cf86
fix up broadcasting
oxinabox 416dae4
fix math
oxinabox b8270fc
put using Nullables in the places needed
oxinabox 70316ef
use 0.7 travis ci
oxinabox 42c2447
Merge pull request #1 from adamryczkowski/fbot/deps
adamryczkowski 630c957
Another batch of deprecation fixes towards Julia 1.0.0
adamryczkowski 9a0662d
Another batch of deprecation fixes until the error with the JLD package
adamryczkowski ed59ea7
New batch of updates
adamryczkowski 0aba8cf
Meged with current upstream master
adamryczkowski 415a1d7
fix REQUIRE
oxinabox 3f3b137
Proposed fix to the c_deallocator[] problem
adamryczkowski 990a395
Another batch of deprecation fixes
adamryczkowski 03f8ffe
Merge branch 'master' of https://github.com/adamryczkowski/TensorFlow…
oxinabox 52cd03e
Remove deps/build.log
adamryczkowski 5885cee
fix convert constructors
oxinabox 10101cd
fix eltype
oxinabox 45deb6a
fix node_name(::Operation)
oxinabox f1b5848
remove buildlog
oxinabox 9dc09f5
Adds gitignore rule against adding deps/build.log
adamryczkowski 9494c1a
Stuck at 'Tensorflow error: Status: Input 'ref' passed double expecte…
adamryczkowski 8e8725d
fix reading attributes
oxinabox 113433a
remove some deps
oxinabox 67a6048
Error properly
oxinabox 64be76d
Random Julia 1.0 compatibility fixes in the examples
adamryczkowski 53a68cb
Merge branch 'master' of github.com:adamryczkowski/TensorFlow.jl
adamryczkowski 006a3f2
Stuck at missing Array{TensorFlow.Port,1}(::Int64) specialization
adamryczkowski 61d1646
logistic.jl runs. Only 2 errors to solve in the unit tests are left...
adamryczkowski 0a9dcc3
Fix until problem with the 'Hello, TensorFlow' returned empty String
adamryczkowski f06ae94
more correct string conversions
oxinabox bf4a5b5
Correct 8 byte offset for reading strings
oxinabox ab32d21
Changes before rebasing with master
adamryczkowski f797e3a
NodeDef from CodeUnits
oxinabox c77359b
merge with master
adamryczkowski e31d140
Merge branch 'master' of github.com:adamryczkowski/TensorFlow.jl
adamryczkowski 04e6f6e
Stuck at Cannot Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-07-10 h…
adamryczkowski b7a8506
Removes RecordIteratorState type
adamryczkowski fc9add4
Cumulative batch of deprecation fixes
adamryczkowski 3bf08ba
Fix build on OS X.
malmaud 8c5c576
Explicitly call 'convert' for Arrays.
malmaud 1ecc98d
Fix issues in math.jl.
malmaud 9bd1c60
More broadcasting fixes.
malmaud 8e0c538
Fix meta.
malmaud 835de9a
Fix squeeze to dropdims.
malmaud 5539580
Fixes to nn.jl
malmaud ac7981b
Shape inference.
malmaud 1b79036
Fix transformations.
malmaud 06ddcf4
Various fixes.
malmaud b30079a
Disable allowed failures
malmaud 111178c
Update travis
malmaud File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -6,7 +6,8 @@ os: | |
- osx | ||
- linux | ||
julia: | ||
- 0.6 | ||
- 0.7 | ||
- 1.0 | ||
- nightly | ||
env: | ||
- CONDA_JL_VERSION="2" PYTHON="" | ||
|
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
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 |
---|---|---|
@@ -1,14 +1,17 @@ | ||
julia 0.6 | ||
julia 0.7 | ||
ProtoBuf 0.3.0 | ||
PyCall 1.7.1 | ||
TakingBroadcastSeriously 0.1.1 | ||
Conda 0.6.0 | ||
Distributions 0.10.2 | ||
StatsFuns 0.3.0 | ||
SpecialFunctions v0.7.0 | ||
JLD2 0.0.6 | ||
FileIO 0.1.2 | ||
Juno 0.2.3 | ||
Compat 0.18 | ||
MacroTools 0.3.6 | ||
AutoHashEquals 0.1.0 | ||
Nullables 0.0.7 | ||
MNIST 0.0.2 | ||
Nullables 0.0.7 | ||
SpecialFunctions 0.7.0 |
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 @@ | ||
build.log |
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
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
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
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
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is wrong now.