@webwriter/neural-network
Version:
Deep learning visualization for feed-forward networks with custom datasets, training and prediction.
35 lines (27 loc) • 969 B
text/typescript
import { LitElementWw } from '@webwriter/lit'
import { CSSResult, TemplateResult, html } from 'lit'
import { customElement, property } from 'lit/decorators.js'
import { globalStyles } from '@/global_styles'
import { ModelUtils } from '@/utils/model_utils'
import { CCard } from '../reusables/c-card'
export class EdgeWeightCard extends LitElementWw {
static scopedElements = {
"c-card": CCard
}
({ attribute: false })
accessor weight: number
// STYLES - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
static styles: CSSResult = globalStyles
// RENDER - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
render(): TemplateResult<1> {
console.log(this.weight)
return html`
<c-card>
<div slot="title">Weight</div>
<div slot="content">
<p>${ModelUtils.formatWeight(this.weight)}</p>
</div>
</c-card>
`
}
}