Coder Social home page Coder Social logo

0000duck / kinematics Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zilixie/kinematics

0.0 0.0 0.0 35.44 MB

Shell 0.01% C++ 90.64% Python 2.33% C 0.72% Objective-C 0.66% MATLAB 0.46% CSS 0.22% Makefile 2.22% Mako 0.05% CMake 2.64% Brainfuck 0.06%

kinematics's Introduction

Computer Graphics – Kinematics

To get started: Clone this repository using

git clone --recursive http://github.com/alecjacobson/computer-graphics-kinematics.git

Background

Read Chapter 15.1-15.5 of Fundamentals of Computer Graphics (4th Edition).

Read Chapter 16.1-16.4 of Fundamentals of Computer Graphics (4th Edition).

Skeleton

In this assignment we'll consider animating shapes rigged to an internal skeleton. The skeleton is a (graphical) user interface (UI) metaphor. A skeleton is a tree of rigid bones, not unlike the anatomical bones in a human or animal.

Each "bone" in the skeleton is really a UI widget for visualizing and controlling a 3D rigid transformation. A common visualization of 3D bone in computer graphics is a long, pointed pyramid shape. This reveals the twisting rotation as well as the tree hierarchy: the bone points toward its children.

Unlike anatomy where the brain triggers muscles to flex and pull the passive bones around, the bones of a skeleton rig will define the pose of a shape.

For each bone, we will consider three "states".

1. Canonical Bone

The "Canonical Bone" of length $\ell$ lies along the $x$-axis with its "tail" at the origin $(0,0,0)$, its "tip" at $(\ell,0,0)$.

The bone is endowed with an orientation or frame. This helps define a canonical twisting direction. We will define twisting as rotating about the $x$-axis in the canonical frame.

For example, in this assignment, bending is accomplished by rotating about the $z$-axis in the canonical frame.

Composing a twist, bend and another twist spans all possible 3D rotations.

We call the three angles composed into a rotation this way, Euler angles (not to be confused with the homophonous Oiler angles).

2. Rest Bone

To assemble a skeleton inside our shape will we map each bone from its [canonical bone][1.canonicalbone] to its position and orientation in the undeformed model. Maintaining the rigidity of the bone, this means for each bone there's a rigid transformation $\hat{\T} = (\hat{\Rot} \quad \hat{\t} ) ∈ \R^{3×4}$ that places its tail and tip to the desired positions in the model.

We use the convention that the "canonical tail" (the origin $(0,0,0)$) is mapped to the "rest tail" inside the model. This means that the translation part of the matrix $\hat{\T}$ is simply the tail position, $\hat{\s}∈\R^3$: $$ \hat{\s} = \hat{\T} \left(\begin{array}{c}0\\0\\0\\1\end{array}\right) = \hat{\Rot} \left(\begin{array}{c}0\\0\\0\end{array}\right) + \hat{\t} 1 = \hat{\t}. $$

The bone's rotation is chosen so that the "canonical tip" $(\ell,0,0)$ maps to the "rest tip" $\hat{\d} ∈ \R³$: $$ \hat{\d} = \hat{\T} \left(\begin{array}{c}\ell\\0\\0\\1\end{array}\right) = \hat{\Rot}\left(\begin{array}{c}\ell\\0\\0\end{array}\right) + \hat{\t}. $$

Typically the "rest tail" of is coincident with the "rest tip" of its parent (if it exists): $$ \hat{\d}_{p} = \hat{\s}. $$

This still leaves any amount of twisting of the bone. In the canonical frame, we can think of this as pre-twisting the bone along the canonical $x$-axis. Clearly, twisting does not effect the ability to map the tail and tip to the correct position. This twist is chosen so that canonical bending aligns with a meaningful direction. For example, we may twist a tibia (shinbone) bone so that canonical bending around the $z$-axis means bending at the knee.

Each rest transformation $\hat{\T}$ places its corresponding bone inside the undeformed shape. The rest transformations do not measure any deformation of the shape from its original position. Thus, the pose of each bone will be measured relative to the "rest bone".

3. Pose Bone

The final state to consider is when a bone is posed. That is, mapped to a new position and orientation from its rest state.

In general, each rest bone undergoes a rigid transformation $\T ∈ \R^{3×4}$, composed of a rotation $\Rot ∈ \R^{3×3}$ and a translation $\t∈\R^{3}$, mapping each of its rest points $\hat{x} ∈ \R³$ to its corresponding posed postion $\x ∈ \R³$:

$$ \x = \T \hat{\x}. $$

$\T$ is expressed as a global mapping of any point in the rest reference frame to its pose position. This makes it convenient for [blending transformations (see below)][linearblendskinning], but it's not so obvious how to pick coherent values for $\T$. In particular, we would like each bone to rotate about its parent's tip, but this position is determined by the parent's pose transformation $\T_p$, which in turn should rotate about the grandparent's tip and so on.

Forward Kinematics

One way to determine the rigid pose transformations $\T_i ∈ \R^{3×4}$ for each bone $i$ in a skeleton is to aggregate relative rotations $\overline{\Rot}_i ∈ \R^{3×3}$ between a bone $i$ and its parent bone $p_i$ in the skeletal tree. The final transformation at some bone $i$ deep in the skeletal tree is computed via a recursive equation.

For each bone, (reading the effect of transformations right to left) we first undo the map from canonical to rest (i.e., via inverting $\hat{\T}_i$), then rotate by our relative rotation $\overline{\Rot}_i$, then map back to rest (via $\hat{T}i$). With our relative transformation accomplished, we continue up the tree recursively applying our parent's relative transformation, and our grandparent's and so on: $$ \T_i = \T{p_i} \left(\begin{array}{c} \hat{\T}_i \\ 0\ 0\ 0 \ 1\end{array}\right) \left(\begin{array}{cccc} \overline{\Rot}_i & \begin{array}{c}0\\0\\0\\\end{array} \\ 0\ 0\ 0 & 1\end{array}\right) \left(\begin{array}{c} \hat{\T}_i \\ 0\ 0\ 0 \ 1\end{array}\right)^{-1} $$

Question: Does using relative rotations ensure that bone tails stay coincident with parent tips?

Hint: What do you get if you multiply $\T_i$ and $\hat{\s}_i$?

As a base case, the root transformation can be defined to be the identity (no transformation) or the rigid transformation placing the object/character generally into a larger scene.

This has the great advantage that if the entire model is rotated or translated at the root, the relative transformations still apply correctly. This property holds locally, too. If bone $i$ controls the tibia (shinbone) and $\Rot_i$ applies a bend at the knee, then twisting and bending at the parent hip bone will naturally compose with the knee bend.

It is convenient to express the relative rotations of each bone in the [canonical frame][1.canonicalbone]. We can utilize canonical twist-bend-twist rotations (three Euler angles, $Θ₁,θ₂,θ₃$). Each bone's rotation is conducted in its canonical frame and then brought through the rest frame through a change of coordinates:

$$ \T_i

\T_{p_i} \hat{\T}i \left(\begin{array}{cccc} \Rot_x(θ{i3}) & \begin{array}{c}0\\0\\0\\\end{array} \\ 0\ 0\ 0 & 1\end{array}\right) \left(\begin{array}{cccc} \Rot_z(θ_{i2}) & \begin{array}{c}0\\0\\0\\\end{array} \\ 0\ 0\ 0 & 1\end{array}\right) \left(\begin{array}{cccc} \Rot_x(θ_{i1}) & \begin{array}{c}0\\0\\0\\\end{array} \\ 0\ 0\ 0 & 1\end{array}\right) \left.\hat{\T}_i\right.^{-1} $$ where the matrix $\Rot_w(φ) ∈ \R^{3×3}$ is the rotation by $φ$ degrees around the $w$-axis.

When implementing a skeleton, it is tempting to use a traditional tree data structure where each node (bone) contains a list of pointers to its children (other bones). However, by the right-to-left reading of the forward kinematics formulae above, it is more convenient to use a data structure where each node (bone) has a pointer to its (unique) parent (other bone). This is ridiculously named a Spaghetti Stack.

Question: What abstract data-structure is good for ensuring a parent's transformation $\T_{p_i}$ are computed before its child's $\T_i$?

Hint: 🥞

Keyframe animation

To create a long animation, specifying three Euler angles for every bone for every frame manually would be too difficult. The standard way to determine the relative bone transformations for each frame is to interpolate values specified at a small number of "key" times during the animation. Linear interpolation will lead to a choppy, robotic animation (try this first!). Instead Catmull-Rom interpolation will produce a smooth animation. Fancier interpolation such as the Kochanek-Bartels method (called TCB in the book) allow better control of easing between key poses.

In this assignment, we will interpolate Euler angles directly. This works well when only a single angle is changing at a time. However, Euler angles do not provide easy movement in every rotational direction. Euler angles model rotations as twist-bend-twist. For our canonical bones, bending around the $z$-axis is easy, but bending around the $y$-axis requires first twisting by $90°$ and then "un"-twisting by $-90°$ after bending.

So, for more complex interpolation of rotations, a different representation such as unit quaternions would be needed. This is outside the scope of this assignment.

Inverse Kinematics

In the [forward kinematics][forwardkinematics] model, the final position of the tip of a finger is determined by setting (manually or via interpolation) the relative transformations of each joint in the finger, the hand, the elbow, the shoulder, ... This indirect control makes it difficult to achieve basic poses. Instead, we can treat the problem of setting relative rotations of internal bones (shoulder, elbow, hand, ...) as an optimization problem where we try to minimize the distance between the tip of the finger and where we want it to be.

Stated mathematically, for a skeleton with $m$ bones, if we create a vector $\a ∈ \R^{3m}$ stacking all the Euler angles of each bone vertically: $$\a = \left(\begin{array}{c} θ_{11} \\ θ_{12} \\ θ_{13} \\ θ_{21} \\ θ_{22} \\ θ_{23} \\ \vdots \\ θ_{m1} \\ θ_{m2} \\ θ_{m3} \end{array}\right) $$

then we can ask for the best vector of angles $θ$. Best-ness must be quantified by an cost/energy/obective-function $E$. This energy is typically first written with respect to the (global, non-relative) pose positions of certains bones $\x_b ∈ \R³$ (often the "tip" of a leaf bone of the skeletal tree, called an end effector). For example, we then we could design our energy to measure the squared distance between the pose tip $\x_b$ of some bone $b$ and a desired goal location $\q∈\R³$:

$$ E(\x_b) = ‖\x_b - \q‖². $$

Using forward kinematics, we can express $\x_b$ and in turn $E$ with respect to relative rotations:

$$ \x_b(\a) = \T_b \hat{\d}b $$ where $\T_b$ depends on $θ{b1},θ_{b2},θ_{b2}$ and $\T_{p_b}$ which depends on $θ_{p_b1},θ_{p_b2},θ_{p_b2}$. In this way our energy can be written as a function of $\a$:

$$ E(\x_b(\a)) = ‖\x_b(\a) - \q‖². $$

We can design arbitrarily complex energies to satisfy our interaction needs. In this assignment, we consider that there is a list of constrained end effectors $b = {b₁,b₂,…,b_k}$ and our objective is that all selected end effectors $b_i$ go to their prescribed locations (provided by the mouse-drag UI). using the simple squared distance measure above.

So, over all choices of $\a$ we'd like to optimize:

$$ \min_{\a} \quad \underbrace{ ∑\limits_{i=1}^k ‖\x_{b_i}(\a) - \hat{\x}{b_i}‖² }{E(\x_b (\a))} $$

We will further constrain our problem by imposing upper and lower bounds on our angles $\a$. These correspond to joint limits. For example, the joint limits of a hinge or elbow type joint may look like: $$ 0° ≤ θ₁ ≤ 0°, \quad 0° ≤ θ₂ ≤ 170°, \quad 0° ≤ θ₃ ≤ 0°. $$ These would ensure that our joint cannot twist, and can only bend in one direction.

So our full optimization problem becomes

$$ \min_{\a^{\text{min}} ≤ \a ≤ \a^{\text{max}}} \quad E(\x_b(\a)) $$ where $\a^{\text{min}}/\a^{\text{max}}$ stack lower/upper bounds correspondingly to $\a$.

This type of minimization is non-trivial. Our energy is a quadratic sum of squares in $\x_b$, but $\x_b$ is a non-linear function of $\a$. In turn, this means to minimize $E$ as a function of $\a$ we must solve a non-linear least squares problem.

Projected Gradient Descent

We're faced with a bound constrained non-linear optimization problem. To solve it, we will construct an initial guess and then iteratively improve the guess by moving in a direction that decreases $E$, after each step snap or project the guess to stay within the bounds if necessary. This algorithm is called projected gradient descent.

The idea behind gradient descent is intuitive: if you want to get to the bottom of a canyon, look at the ground and walk in the direction that goes downhill.

So, we iteratively take a step in the negative gradient direction of our objective function $E(\x(\a))$:

$$ \a ← \a - σ \left(\frac{dE(\x(\a))}{d\a}\right)^T $$

Applying the chain rule, this iteration becomes

$$ \a ← \a - σ \left(\frac{d\x(\a)}{d\a}\right)^T\left(\frac{dE(\x)}{d\x}\right) $$

where $\frac{dE}{d\a} ∈ \R^{|\a|}$, $\frac{dE}{d\x} ∈ \R^{|\x|}$, and $\frac{d\x}{d\a} ∈ \R^{|\x| × |\a|}$

The change in tip positions $\x$ with respect to joint angles $\a$ does not depend on the choice of energy $E$. We call this matrix of changes the kinematic Jacobian, $\J ∈ \R^{|\x| × |\a|}$:

$$ \J = \frac{d\x}{d\a}. $$

Written in terms of $\J$ our step becomes,

$$ \a ← \a - σ \J^\transpose\left(\frac{dE(\x)}{d\x}\right) $$

Question: Can we take an arbitrarily large step $σ>>0$?

Hint: What if we just need to change $\a$ by a small, non-zero amount? What would chooing $σ=1,000,000$ do to $\a$? What would that in turn do to $E(\x(\a))$?

For sufficiently small $σ$, each step will decrease the objective energy $E$.

If the gradient of $E$ becomes zero, then we're at a stationary point and likely at a minimum.

To ensure that our bounds are obeyed, after each step we need to project onto our constraints by snapping each value to its respective bound if necessary:

$$ \a_i ← \max[\a^\text{min}_i, \min[\a^\text{max}_i,\a_i]]. $$

We'll refer to this as a projection filter acting on the entire vector $\a$:

$$ \a ← \text{proj}(\a). $$

Newton's method

The local gradient of a function can be very different from the "best" descent direction. The choice of $σ$ reflects how much we "trust" this direction. Unfortunately, if $σ$ is too large our iterations may diverge. If $σ$ is too small, we will have to do many iterations.

In order to find a better descent direction, let's assume we knew more about $E$. That is, suppose we also knew its second derivatives: $\frac{d²E}{d\x²}$.

Given an initial guess $\x⁰$ we're looking to find a change $∆\x$ so that $E(\x⁰

  • ∆\x)$ is a stationary point.

Starting with our equilibrium equation, $$ \frac{dE(\x)}{d\x} = \0 $$

we substitute in $x = \x⁰ + ∆\x$

$$ \frac{dE(\x⁰+∆\x)}{d∆\x} = \0 $$

Plugging in a Taylor series expansion

$$ E(\x⁰+∆\x) \approx E(\x⁰) + \frac{d E(\x⁰+∆\x)}{d\x} ∆\x + \frac{d²E(\x⁰+∆\x)}{d\x²}\frac{(∆\x)²}{2} + …$$

and dropping higher order terms ($…$), we get:

$$ \frac{d}{d∆\x}(E(\x⁰) + \frac{d E(\x⁰+∆\x)}{d\x} ∆\x + \underbrace{\frac{d²E(\x⁰+∆\x)}{d\x²}}_\H\frac{(∆\x)²}{2}) = \0, $$ where we call $\H ∈ \R^{|x| × |x|}$ the Hessian matrix.

Applying the differentiation by $∆\x$ we get a system of equations:

$$ \frac{d E(\x⁰+∆\x)}{d\x} + \frac{d²E(\x⁰+∆\x)}{d\x²} ∆\x = \0. $$ Solving for the change $∆x$ we get: $$ ∆x = -\left.\H\right.^{-1} \frac{d E(\x⁰+∆\x)}{d\x}. $$

So a raw Newton's method update would be:

$$ \x ← \x - \left.\H\right.^{-1} \frac{d E(\x⁰+∆\x)}{d\x}. $$

If our Taylor series approximation was perfect (no high order terms in $…$; in otherwords $E$ was quadratic), then Newton's method would be perfect: a single update immediately takes us to the minimum.

Newton's method is problematic for a number of reasons.

  1. We built our step purely based on the equations for a stationary point. Nothing says we won't get sent toward a maximum or saddle-point.
  2. $\H$ is often difficult or expensive to compute.
  3. $\H$ may be singular.
  4. Inverting $\H$ (even if possible) is often slow.
  5. Our system is built off a local approximation of $E$ so the descent direction may still point in the wrong direction.

Since we're approximating $E$ at every iteration anyway, we'll skirt many of these issues by considering various approximations of the Hessian matrix $\H$. We'll never actually compute $\H$.

Gradient Descent Revisited

The simplest approximation of $\H$ is the identity matrix $\I$. Plugging this into our truncated Taylor series expansion above, our approximation would read:

$$ E(\x⁰) + \frac{d E(\x⁰+∆\x)}{d\x} ∆\x + \I \frac{(∆\x)²}{2}. $$

and our step reduces to good ol' gradient descent:

$$ \x ← \x - \frac{d E(\x⁰+∆\x)}{d\x}. $$

Gauss-Newton

Given that we have already computed first derivatives in the Jacobian $\J =\frac{d\x(\a)}{d\a}$, an even better approximation for Hessian $\H$ than the identity $\I$ would be to use $\J^\transpose J$. The resulting update becomes:

$$ \a ← \a + (\left.\J\right.^\transpose\J)^{-1} \left.\J\right.^\transpose \frac{dE(\x)}{d\x} $$

Unlike $\H$, $\J^\transpose\J$ is easy to compute if we're already computing $\J$. It is guaranteed to be positive semi-definite and it is possible to invert or reliably pseudo-invert ($\J^+$ acting in place of $(\left.\J\right.^\transpose\J)^{-1} \left.\J\right.^\transpose$).

The descent directions are often significantly better than gradient descent. As a result this method, called Gauss-Newton, requires many fewer iterations to converge.

It still may try to descend in bad directions. In particular, for inverse kinematics, this Gauss-Newton method performs poorly if the desired positions are not reachable: over extending an arm. First the solution locks in place and then diverges. This happens when our Hessian approximation $\J^\transpose\J$ starts misbehaving.

A good fix is to blend between the gradient descent and Gauss-Newton search directions. That is blend between $\I$ and $\J^\transpose\J$. This is called the Levenberg-Marquadt algorithm.

Finite Differencing

But how do we compute the kinematic Jacobian $\J$? Since each entry in $\x$ is the result of forward kinematics and not just a math expression, it's not immediately obvious how to determine its derivatives. However, a derivative is nothing more than the limit of a small change output divided by a small change in the input:

$$ \J_{i,j} = \lim_{h → 0} \frac{\x_i(\a+h δ_j) - \x_i(\a)}{h}, $$ where $δ_j ∈ \R^{|a|}$ is a vector of zeros except a 1 at location $j$.

We can numerically approximate this limit by fixing $h$ to a small value (e.g., $h=10^{-7}$). This is called the finite difference approximation: $$ \J_{i,j} \approx \frac{\x_i(\a+h δ_j) - \x_i(\a)}{h}. $$

For inverse kinematics, we will need to compute $\x_i(\a+h δ_j)$ once for each Euler angle of each bone $j$. This requires $3m$ calls to our forward kinematics function (each with a slightly different input), which is in turn $O(m)$. This makes the total cost $O(m²)$ to fill in our $\J$ matrix.

Automatic Differentiation

Forward differencing requires $O(m)$ evaluations but doesn't require us to change our code for function evaluation at all: we just evaluate it. If we're willing to sprinkle some special types on top of our code (but otherwise leave in all the sub-routine calls, if statements, for loops, etc.), we could use automatic differentiation to compute $\J$.

The are two extremes when it comes to autodiff: forward mode and backward mode.

Forward mode works like finite differencing, except the perturbation to the differentiation variable is symbolic and derivatives are tracked through each basic operation (+,-,sin,etc.): the total computational cost to construct $\J$ is again $O(m²)$.

Backward mode works by pushing each function call and basic operation onto a list. Derivatives for all variables are then computed as we pop backward through the evaluation: identical to how we read right-to-left on our recursive kinematics formula. This means we compute derivatives with respect to all variables $\a$ in a single backwards evaluation. The total cost is only $O(m)$ to fill $\J$.

Whether we're using gradient descent, Newton's method or Gauss-Newton, we a generally attempting improving our guess by iteratively moving in a descent direction $∆\a$, followed by projecting onto constraints:

$$ \a ← \text{proj}(\a + ∆\a). $$

Despite our best efforts, this step is not guaranteed to actually decrease our energy $E$. We can think of the descent direction $∆\a$ as defining a line (or really a ray) and we'd like to find a positive amount $σ$ to move along this line that actually does decrease the energy:

$$ E(\text{proj}(\a + σ ∆\a)) < E(\a). $$

While there exists an optimal step $σ$, we don't want to spend too long finding it as we would be better off spending our computational efforts improving the descent direction for the next step. So, starting with a large value $σ$ (e.g., 10,000), we decrease $σ$ by a constant factor (e.g., $½$) until our inequality passes.

Depending on the configuration, it may or may not be possible to exactly satisfy the constraints (i.e., $E = 0$). But after many iterations, the solution should converge to a local minimum (i.e., $E&gt;0$, but $dE/d\a = 0$). In our assignment, a thin line will appear if the user-given constraint is not coincident with the end-effector tip position.

Linear Blend Skinning

So far we have only discussed bones floating and moving around in space. Ultimately, we would like to deform interesting models: for example, animals and characters. Unlike robots or mechanical objects, the animals tend to deform smoothly, even near joints: an elbow does not tear into two rigid parts when bent. Instead, the skin around the elbow stretches and smoothly warps. Skin closer to the forearm deforms more like the rigid rotation and translation of the forearm, and likewise the skin near the upper arm deforms like the rigid upper arm bone. In between, we see a smooth transition or blend.

To approximate this smooth blending quickly on the computer, we begin with a 3D triangle mesh in its "rest" position. The "rest bones" are embedded inside of this model. Each vertex $i$ of the mesh is assigned a weight $w_{i,j}$ for each bone $j$ corresonding to how much it is "attached" to that bone on a scale of 0% to 100%. Generally, if the rest position of the vertex $\hat{\v}i$ is nearer to a bone $j$ then its weight $w{i,j}$ will be larger. A vertex in the middle of the elbow may have a weight of 50% for the upper arm and 50% the forearm and 0% for all other bones (toes, fingers, legs, spine, etc.).

Smoothly varying weights produce a smooth deformation. In constrast, piecewise-constant weights lead to a piece-wise rigid deformation.

The "pose" position $\v_i$ of this vertex $i$ will be computed as a weighted average or linear combination of each bone's pose transformation $\T_j$ applied to the vertex's rest position $\hat{\v}_i$:

$$ \v_i = \sum\limits^{m}{j=1} w{i,j} \T_j \left(\begin{array}{c}\hat{\v}_i\\1\end{array}\right). $$

Question: What happens to per-vertex normals after applying a skinning deformation?

Hint: 🤯

Linear blend skinning has many defects. Good "rigging artists" can mitigate these by carefully painting (yes, painting) weight functions and position the [rest bones][2.restbone]. However, some of the linear blend skinning defects are theoretical: most notably problems that occur by averaging rotations as matrices.

Question: What transformation matrix do you get if you compute: $½ \Rot_x(90°) + ½ \Rot_x(-90°)$?

Hint: It's not $\Rot_x(0°)$.

Tasks

White List

  • Eigen::Affine3d
  • Eigen::AngleAxis
  • #include <Eigen/Geometry>
  • c++ lambda functions and capturing #include <functional>

Black List

  • igl::lbs
  • igl::forward_kinematics

src/euler_angles_to_transform.cpp

src/forward_kinematics.cpp

src/transformed_tips.cpp

src/catmull_rom_interpolation.cpp

src/linear_blend_skinning.cpp

src/copy_skeleton_at.cpp

src/end_effectors_objective_and_gradient.cpp

src/kinematics_jacobian.cpp

src/projected_gradient_descent.cpp

src/line_search.cpp

kinematics's People

Contributors

zilixie avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.