Public
Edited
Feb 12
Fork of Untitled
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
compactRange = (extent, options) => {
const elt = Inputs.range(extent, options);
elt.querySelector('label').style.width = '10px'
return elt;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
categorical_xent = -Math.log(probs[correctClass]) / Math.log(bases.xent)
Insert cell
Insert cell
Insert cell
logits
Insert cell
logits_with_temperature = logits.map(x => x / temperature)
Insert cell
exp_logits = logits_with_temperature.map(x => Math.pow(bases.logit, x))
Insert cell
sum_exp_logits = sum_array(exp_logits)
Insert cell
logsumexp = Math.log(sum_exp_logits)
Insert cell
probs = exp_logits.map(x => x / sum_exp_logits)
Insert cell
Insert cell
Insert cell
import {set} from "@observablehq/synchronized-inputs"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more