上一页 1 ··· 189 190 191 192 193 194 195 196 197 ··· 494 下一页
摘要: Let's say we have a State Machine Model: import { createMachine, interpret } from "xstate"; const elBox = document.querySelector("#box"); const setPoi 阅读全文
posted @ 2020-07-20 22:25 Zhentiw 阅读(177) 评论(0) 推荐(0)
摘要: The k-means algorithm captures the insight that each point in a cluster should be near to the center of that cluster. It works like this: first we cho 阅读全文
posted @ 2020-07-17 20:52 Zhentiw 阅读(262) 评论(0) 推荐(0)
摘要: #!/usr/bin/python import random import numpy import matplotlib.pyplot as plt import pickle from outlier_cleaner import outlierCleaner from sklearn.lin 阅读全文
posted @ 2020-07-16 23:25 Zhentiw 阅读(301) 评论(0) 推荐(0)
摘要: import { createMachine, interpret } from "xstate"; const elBox = document.querySelector("#box"); const machine = { initial: "inactive", states: { inac 阅读全文
posted @ 2020-07-16 18:48 Zhentiw 阅读(177) 评论(0) 推荐(0)
摘要: State + Event + Interpreter: const machine = { initial: "idle", states: { idle: { on: { FETCH: "pending", }, }, pending: { on: { RESOLVE: "resolved", 阅读全文
posted @ 2020-07-15 03:17 Zhentiw 阅读(182) 评论(0) 推荐(0)
摘要: Let's say we have a command line application: const { Task } = require("../../libs/types"); const { save, all } = require("../../libs/db"); const { la 阅读全文
posted @ 2020-07-07 19:35 Zhentiw 阅读(226) 评论(0) 推荐(0)
摘要: An ancient problem of centering items with CSS is finally (!) solved! In this quick lesson we're going to learn how to use place-items CSS property in 阅读全文
posted @ 2020-07-06 14:31 Zhentiw 阅读(116) 评论(0) 推荐(0)
摘要: Decision trees can handle none linear speratable dataset, in the picture, there is none separable dataset When we use dscision tree, we ask multi line 阅读全文
posted @ 2020-07-03 21:57 Zhentiw 阅读(200) 评论(0) 推荐(0)
摘要: Take the native HTML checkboxes and jazz them up while still ensuring they are keyboard accessible. We use pseudo-elements and pseudo-classes to repli 阅读全文
posted @ 2020-07-03 15:38 Zhentiw 阅读(157) 评论(0) 推荐(0)
摘要: In this lesson, we dive into using CSS border-radius. We will look at how you can use it to create not only basic shapes but complex ones too. We will 阅读全文
posted @ 2020-07-03 15:27 Zhentiw 阅读(130) 评论(0) 推荐(0)
上一页 1 ··· 189 190 191 192 193 194 195 196 197 ··· 494 下一页