Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 6,836 Bytes
63858e7 fe4a287 63858e7 fe4a287 63858e7 fe4a287 63858e7 fe4a287 63858e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
import * as tp from "./etc/types"
import * as x_ from "./etc/_Tools"
import * as _ from "lodash"
import * as R from 'ramda'
import { URLHandler } from "./etc/URLHandler";
const falsey = val => (new Set(['false', 0, "no", false, null, ""])).has(val)
const truthy = val => !falsey(val)
const toNumber = x => +x;
type InspectorOptions = "context" | "embeddings" | null
// Must be optional params for initializations
interface URLParameters {
sentence?: string
model?: string
modelKind?: string
layer?: number
heads?: number[]
threshold?: number
tokenInd?: number | 'null'
tokenSide?: tp.SideOptions
maskInds?: number[]
hideClsSep?: boolean
}
export class UIConfig {
private _conf: URLParameters = {}
private _headSet: Set<number>;
attType: "aa"
_nHeads: number | null;
_nLayers: number | null;
private _token: tp.TokenEvent;
constructor() {
this._nHeads = 12;
this._nLayers = null;
this.attType = 'aa'
this.fromURL()
this.toURL(false)
}
toURL(updateHistory = false) {
URLHandler.updateUrl(this._conf, updateHistory)
}
fromURL() {
const params = URLHandler.parameters
this._conf = {
model: params['model'] || 'bert-base-cased',
modelKind: params['modelKind'] || tp.ModelKind.Bidirectional,
sentence: params['sentence'] || "The girl ran to a local pub to escape the din of her city.",
layer: params['layer'] || 1,
heads: this._initHeads(params['heads']),
threshold: params['threshold'] || 0.7,
tokenInd: params['tokenInd'] || null,
tokenSide: params['tokenSide'] || null,
maskInds: params['maskInds'] || [9],
hideClsSep: truthy(params['hideClsSep']) || true,
}
this._token = { side: this._conf.tokenSide, ind: this._conf.tokenInd }
}
private _initHeads(v: number[] | null) {
if (v == null || v.length < 1) {
this.selectAllHeads()
}
else {
console.log(this.headSet(new Set(v))._conf.heads);
}
return this.heads()
}
nHeads(): number
nHeads(val: number): this
nHeads(val?) {
if (val == null) return this._nHeads
this._nHeads = val
return this
}
nLayers(): number
nLayers(val: number): this
nLayers(val?) {
if (val == null) return this._nLayers
this._nLayers = val
return this
}
toggleSelectAllHeads() {
if (this.heads().length == 0) {
this.selectAllHeads()
}
else {
this.selectNoHeads()
}
}
selectAllHeads() {
this.headSet(new Set(_.range(0, this._nHeads)))
}
selectNoHeads() {
this.headSet(new Set([]))
}
toggleHead(head: number): tp.Toggled {
let out;
if (this.headSet().has(head)) {
this.headSet().delete(head);
out = tp.Toggled.REMOVED
}
else {
this.headSet().add(head);
out = tp.Toggled.ADDED
}
// Set through setter function to ensure url is updated
this.headSet(this.headSet()); // I hate mutable datastructures... This is confusing.
return out
}
toggleToken(e: tp.TokenEvent): this {
const picker = R.pick(['ind', 'side'])
const compareEvent = picker(e)
const compareToken = picker(this.token())
if (R.equals(compareToken, compareEvent)) {
this.rmToken();
}
else {
this.token(e);
}
return this;
}
token(): tp.TokenEvent;
token(val: tp.TokenEvent): this;
token(val?: tp.TokenEvent) {
if (val == null)
return this._token
this._token = val;
this._conf.tokenInd = val.ind;
this._conf.tokenSide = val.side;
this.toURL();
return this
}
hasToken() {
const conf = this._conf
const actuallyNull = ((conf.tokenInd == null) && (conf.tokenSide == null))
const strNull = (conf.tokenInd == "null")
return (!actuallyNull) && (!strNull)
}
rmToken() {
this.token({ ind: null, side: null });
return this
}
sentence(): string;
sentence(val: string): this;
sentence(val?) {
if (val == null)
return this._conf.sentence
this._conf.sentence = val
this.toURL(true)
return this
}
threshold(): number;
threshold(val: number): this;
threshold(val?) {
if (val == null) return this._conf.threshold;
this._conf.threshold = val;
this.toURL();
return this;
}
heads(): number[] {
return this._conf.heads
}
layer(): number
layer(val: number): this
layer(val?) {
if (val == null)
return this._conf.layer
this._conf.layer = val;
this.toURL();
return this
}
headSet(): Set<number>;
headSet(val: Set<number>): this;
headSet(val?) {
if (val == null) {
return this._headSet;
}
this._headSet = val;
this._conf.heads = x_.set2SortedArray(this._headSet)
this.toURL();
return this
}
maskInds(): number[];
maskInds(val: number[]): this;
maskInds(val?) {
if (val == null) return this._conf.maskInds;
this._conf.maskInds = val;
this.toURL();
return this;
}
hideClsSep(): boolean;
hideClsSep(val: boolean): this;
hideClsSep(val?) {
if (val == null) return this._conf.hideClsSep;
this._conf.hideClsSep = truthy(val);
this.toURL();
return this;
}
model(): string;
model(val: string): this;
model(val?) {
if (val == null) return this._conf.model
this._conf.model = val
this.toURL();
return this
}
modelKind(): string;
modelKind(val: string): this;
modelKind(val?) {
if (val == null) return this._conf.modelKind
this._conf.modelKind = val
this.toURL();
return this
}
/**
* Return the offset needed for the modelKind in the configuration
*/
get offset() {
switch (this.modelKind()) {
case tp.ModelKind.Bidirectional: {
return 0
}
case tp.ModelKind.Autoregressive: {
return 0
}
default: {
return 0
}
}
}
get showNext() {
return this.modelKind() == tp.ModelKind.Autoregressive ? true : false
}
get matchHistogramDescription() {
return this.modelKind() == tp.ModelKind.Autoregressive ? "Next" : "Matched"
}
}
|