This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
[MXNET-1333] Estimator and Fit API #14629
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
1b4e604
[MXNet-1334][Fit API]base class for estimator and eventhandler (#14346)
roywei 5b1eb20
Fixed issue where the estimator was printing beyond the dataset size …
piyushghai 02e7c9b
[MXNet-1349][Fit API]Add validation support and unit tests for fit() …
abhinavs95 92c3c21
[MXNet-1340][Fit API]Update train stats (#14494)
roywei b11114a
[MXNet-1375][Fit API]Added RNN integration test for fit() API (#14547)
karan6181 ca2d884
[MXNet-1343][Fit API]Add CNN integration test for fit() API (#14405)
abhinavs95 fcee290
[MXNET-1344, 1346][FIT API] Retrieve Batch size and Logging verbose s…
karan6181 768470e
move estimator to contrib (#14633)
roywei 6c455ef
move to gluon contrib (#14635)
roywei 900b449
[Fit API] improve event handlers (#14685)
roywei 5ac7751
[MXNET-1396][Fit-API] Update default handler logic (#14765)
roywei d57a712
[Fit API] update estimator (#14849)
roywei 5c34df3
[Fit-API] Adress PR comments (#14885)
roywei 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
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,21 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# pylint: disable=wildcard-import | ||
"""Gluon Estimator Module""" | ||
from .estimator import * | ||
from .event_handler import * |
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.
we are running python scripts instead of nosetests, but both will throw error
I'm combining these 4 tests, although running them separately locally take less than 5 min, but creating a separate job and run on CI takes long time. So I'm adding total 1 additional job to run.