Pre-train | Target | Unit | MAE | Epochs |
---|---|---|---|---|
No | μ | Debye | 0.0285 | 800 |
Yes | μ | Debye | 0.0261 | 700 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import UIKit | |
class ViewController: UIViewController { | |
@IBOutlet weak var imgView: UIImageView! | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
loadSample() | |
} |
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
import CoreML | |
import XCTest | |
@testable import mlsample | |
class mlsampleTests: XCTestCase { | |
override func setUp() { | |
super.setUp() | |
} | |
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
package tfexample.myapp.com.myapplication | |
import android.os.Bundle | |
import android.support.v7.app.AppCompatActivity | |
import android.util.Log | |
import org.tensorflow.contrib.android.TensorFlowInferenceInterface | |
import kotlin.system.measureTimeMillis | |
val modelName = "file:///android_asset/mobile_unet_160_100_100.pb" |
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
import time | |
import numpy as np | |
from keras import Input | |
from keras.applications.mobilenet import DepthwiseConv2D | |
from keras.engine import Model | |
from keras.layers import Conv2D | |
batch_num = 16 |
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
import numpy as np | |
from keras.layers import Dense, Dropout, Activation | |
from keras.layers.advanced_activations import PReLU | |
from keras.models import Sequential | |
from matplotlib import pyplot as plt | |
seed = 7 | |
np.random.seed(seed) | |
num_digits = 14 # binary encode numbers |
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
{ | |
"email": "[email protected]", | |
"email_verified": true, | |
"family_name": "Sosa", | |
"gender": "male", | |
"given_name": "Akira", | |
"hd": "gmail.com", | |
"locale": "en", | |
"name": "Akira Sosa", | |
"picture": "https://lh3.googleusercontent.com/path/to/photo.jpg", |
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
echo y | ${ANDROID_HOME}/tools/android update sdk -u -a -t platform-tools,build-tools-18.0.1 |
NewerOlder