Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
e6d9f89c
Commit
e6d9f89c
authored
Dec 28, 2019
by
Wang Yucheng
Committed by
Zhi
Dec 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[autotvm] fix typos in comment (#4591)
parent
a55d1196
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
python/tvm/autotvm/database.py
+1
-1
python/tvm/autotvm/tophub.py
+1
-1
python/tvm/autotvm/tuner/xgboost_cost_model.py
+1
-1
python/tvm/autotvm/tuner/xgboost_tuner.py
+1
-1
No files found.
python/tvm/autotvm/database.py
View file @
e6d9f89c
...
...
@@ -156,7 +156,7 @@ class RedisDatabase(Database):
Examples
--------
get records for a target
>>> db.filter(lambda inp, resul
st
: "cuda" in inp.target.keys)
>>> db.filter(lambda inp, resul
ts
: "cuda" in inp.target.keys)
get records with errors
>>> db.filter(lambda inp, results: any(r.error_no != 0 for r in results))
"""
...
...
python/tvm/autotvm/tophub.py
View file @
e6d9f89c
...
...
@@ -223,7 +223,7 @@ def load_reference_log(backend, model, workload_name, template_key):
if
model
==
inp
.
target
.
model
:
find
=
True
break
# if device model is not find, use the device model with the most tuned workl
ao
ds
# if device model is not find, use the device model with the most tuned workl
oa
ds
if
not
find
and
counts
:
model
=
max
(
counts
.
items
(),
key
=
lambda
k
:
k
[
1
])[
0
]
...
...
python/tvm/autotvm/tuner/xgboost_cost_model.py
View file @
e6d9f89c
...
...
@@ -51,7 +51,7 @@ class XGBoostCostModel(CostModel):
'itervar' is more accurate but 'knob' is much faster.
There are some constraints on 'itervar', if you meet
problems with feature extraction when using 'itervar',
you can swith to 'knob'.
you can swit
c
h to 'knob'.
For cross-shape tuning (e.g. many convolutions with different shapes),
'itervar' and 'curve' has better transferability,
...
...
python/tvm/autotvm/tuner/xgboost_tuner.py
View file @
e6d9f89c
...
...
@@ -40,7 +40,7 @@ class XGBTuner(ModelBasedTuner):
'itervar' is more accurate but 'knob' is much faster.
There are some constraints on 'itervar', if you meet
problems with feature extraction when using 'itervar',
you can swith to 'knob'.
you can swit
c
h to 'knob'.
For cross-shape tuning (e.g. many convolutions with different shapes),
'itervar' and 'curve' has better transferability,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment