-
Notifications
You must be signed in to change notification settings - Fork 606
Make schema validation optional #100
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
Merged
Merged
Changes from 15 commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
214e1cc
ResourceConfigField -> ResourceField
1vn 719ed13
go transformer changes
1vn b26eccc
Merge branch 'master' into spec-optional
1vn 5c835c2
comment out error stack printing
1vn b54ffd3
format
1vn 162bc86
simplify fetch_metadata
1vn b8db138
clean up
1vn a35f089
fix transform spark bug and training_columns
1vn fbf9f56
format
1vn 78e0095
fix url
1vn 09992cc
unfix url
1vn aa9e900
Merge branch 'spec-optional' of github.com:cortexlabs/cortex into spe…
1vn 0f6954d
merge master
1vn 36c5fcf
address some comments
1vn 6a3a9bd
check 5 samples
1vn c5f760d
remove skip validation
1vn 0bd6b73
remove outdated check
1vn 081b9b3
add AlphaNumericDashDotUnderscoreEmpty
1vn 7fedb6f
address some comments - lowercase resourceFields and replace error
1vn 9445688
cache anon specs
1vn 14e45ff
fix autogen
1vn 03a22bc
progress
1vn c4a04bb
lazy load metadata
1vn cd38e52
clean up spark
1vn 909a001
format and lint
1vn 8c93f4c
don't skip cast
1vn 106fd58
default to None
1vn 28fcdc8
fix context
1vn c5504ac
format
1vn 5271c3f
fix tests
1vn 19a69bb
fix test
1vn ad9d8b3
address some python comments
1vn b6d4337
format
1vn 181da9a
add test, remove camel case
1vn 487cf40
Merge branch 'master' into spec-optional
1vn 0f7c363
clean up type checking logic, formatting
1vn 076c020
remove more camel case
1vn 486c026
fix more camel case
1vn 79657c4
address some comments
1vn 471e98f
refactor metadata
1vn 2d5602c
use raw_dataset key
1vn 8c7fa9b
address some comments
1vn e493684
move type inference to validate_trannsformer
1vn c1551c0
validate inferred types from transform spark and python
1vn 8abc9dc
pass type downstream
1vn b36218e
add comment about transform_python
1vn 5a7bdd3
remove unused
1vn 7583e39
Merge branch 'master' into spec-optional
1vn 2aa5a99
address comments
1vn 95d98e1
format
1vn 694b08d
wrap more code in try
1vn 5b5f0b6
move type check before value check
1vn b2fd9d7
address comments
1vn 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 hidden or 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 hidden or 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,6 +1,6 @@ | ||
- kind: transformed_column | ||
name: image_pixels | ||
transformer: decode_and_normalize | ||
transformer_path: implementations/transformers/decode_and_normalize.py | ||
inputs: | ||
columns: | ||
image: image |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,13 +1,6 @@ | ||
- kind: aggregator | ||
name: max_length | ||
inputs: | ||
columns: | ||
col: STRING_COLUMN | ||
output_type: INT | ||
|
||
- kind: aggregate | ||
name: max_review_length | ||
aggregator: max_length | ||
aggregator_path: implementations/aggregators/max_length.py | ||
inputs: | ||
columns: | ||
col: review |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.