View train_val.prototxt
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
name: "AlexNet" | |
layer { | |
name: "data" | |
type: "Data" | |
top: "data" | |
top: "label" | |
include { | |
phase: TRAIN | |
} | |
transform_param { |
View train_val.prototxt
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
layer { | |
name: "loss" | |
type: "SoftmaxWithLoss" | |
bottom: "fc8" | |
bottom: "label" | |
top: "loss" | |
} | |
layer { | |
name: "loss" | |
type: "SoftmaxWithLoss" |
View train_val.prototxt
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
layer { | |
name: "loss" | |
type: "SoftmaxWithLoss" | |
bottom: "fc8" | |
bottom: "label" | |
top: "loss" | |
} |
View RectangleModelTestWeakAccesses.kt
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
@RunWith(Parameterized::class) | |
class RectangleModelTestWeakAccesses { | |
@JvmField | |
@Parameterized.Parameter(0) | |
var o1: Point? = null | |
@JvmField | |
@Parameterized.Parameter(1) | |
var o2: Point? = null | |
@JvmField |
View RectangleModelTestConstructorBased.kt
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
@RunWith(Parameterized::class) | |
class RectangleModelTestConstructorBased constructor( | |
private val o1: Point, | |
private val o2: Point, | |
private val expected: Boolean) { | |
companion object { | |
@JvmStatic | |
@Parameterized.Parameters | |
fun data(): MutableList<Array<out Any?>>? { |
View RectangleModel.kt
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
/** | |
* o1----------------------o | |
* | | | |
* | | | |
* | | | |
* o-----------------------o2 | |
* | |
* @param topLeftPoint would be o1 | |
* @param bottomleftPoint would be o2 | |
*/ |
View SimpleListActivity.kt
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
class SimpleListActivity : | |
BaseActivity(), SimpleListActivityViewPresenter { | |
@BindView(R.id.back_IV) | |
lateinit var backMore: AppCompatImageView | |
@BindView(R.id.recyclerViewMore) | |
lateinit var recyclerView: RecyclerView | |
@BindView(R.id.moreBannerImage) |
View SimpleListActivityPresenterLogic.kt
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
class SimpleListActivityViewPresenterLogic constructor(private val simpleListActivityViewPresenter: SimpleListActivityViewPresenter) : | |
SimpleListActivityPresenter { | |
/** | |
* Lifecycle functions | |
*/ | |
override fun onCreate() { | |
simpleListActivityViewPresenter.setOnClickListeners() | |
simpleListActivityViewPresenter.loadBannerImage() |
View SimpleListActivityPresenter.kt
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
interface SimpleListActivityPresenter { | |
fun onCreate() | |
fun onResume() | |
fun setOnBackPressed(backMore: AppCompatImageView) | |
fun setOnSignInClicked(moreSignInButton: Button) | |
fun setOnRegisterClicked(moreRegisterButton: Button) | |
fun refreshView(notLoggedInArea: View, recyclerView: RecyclerView) | |
fun configureRecyclerView(recyclerView: RecyclerView) | |
fun loadBannerImage(bannerImage: ImageView) |
View SimpleListActivityViewPresenter.kt
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
interface SimpleListActivityViewPresenter { | |
fun loadBanner() | |
fun configureRecyclerView() | |
fun refreshView() | |
fun setOnClickListeners() | |
fun getActivity(): FragmentActivity | |
} |
NewerOlder