-
Updated
Jul 2, 2021 - Python
neural-architecture-search
Here are 186 public repositories matching this topic...
When running TabularPredictor.fit(), I encounter a BrokenPipeError for some reason.
What is causing this?
Could it be due to OOM error?
Fitting model: XGBoost ...
-34.1179 = Validation root_mean_squared_error score
10.58s = Training runtime
0.03s = Validation runtime
Fitting model: NeuralNetMXNet ...
-34.2849 = Validation root_mean_squared_error score
43.63s =
-
Updated
Jan 3, 2021 - Python
We would like to forward a particular 'key' column which is part of the features to appear alongside the predictions - this is to be able to identify to which set of features a particular prediction belongs to. Here is an example of predictions output using the tensorflow.contrib.estimator.multi_class_head:
{"classes": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
"scores": [0.068196
-
Updated
Feb 20, 2021
-
Updated
Dec 9, 2020 - Python
-
Updated
Jun 28, 2021
-
Updated
Jul 4, 2021 - Python
-
Updated
Sep 15, 2020
-
Updated
Jun 22, 2021 - Python
-
Updated
Jul 5, 2020 - Python
-
Updated
Jun 25, 2021
-
Updated
Jul 5, 2021 - Python
Hi Jiahui,
Thanks for the great work. I'm trying to reproduce AutoSlim for CIFAR-10 (Table 2).
Could you please provide a detailed hyperparameter you used for it?
I'm able to train the baseline MobileNetV2 1.0x to 7.9 Top-1 error using the following hyperparameters:
- 0.1 initial learning rate
- linear learning rate decay
- 128 batch size
- 300 epochs of training
- 5e-4 weight decay
-
Updated
Jun 19, 2021
-
Updated
Jun 26, 2019 - Python
-
Updated
Jan 31, 2021 - Python
-
Updated
Jun 8, 2021 - Python
-
Updated
Apr 17, 2021 - Python
-
Updated
Oct 29, 2018 - Python
-
Updated
Apr 28, 2021
-
Updated
Dec 8, 2018 - Python
-
Updated
Jul 4, 2021 - Python
-
Updated
Mar 25, 2021 - Python
-
Updated
Jan 8, 2020 - Python
-
Updated
Nov 27, 2020
-
Updated
Jul 2, 2021 - Python
In the code, it seems that you use the model stored in ema to do the validation and get the final result.Here i have two questions:
1.Why do you use the ema model to do the validation, but do not use the model_wrapper which is directely preuned?
2.Is it supposed that ema model will get better result than model_wrapper?And why?
Thanks very much for your reply!
-
Updated
Jun 10, 2021 - Python
Improve this page
Add a description, image, and links to the neural-architecture-search topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the neural-architecture-search topic, visit your repo's landing page and select "manage topics."
Feature Description
We want to enable the users to specify the value ranges for any argument in the blocks.
The following code example shows a typical use case.
The users can specify the number of units in a DenseBlock to be either 10 or 20.
Code Example