Skip to content

Instantly share code, notes, and snippets.

View maximus12793's full-sized avatar
🤖
I Support Vector Machines

╯‵Д′)╯彡┻━┻ (☕1e6) maximus12793

🤖
I Support Vector Machines
  • 9fdf47dbbd3b2008eb9ab40cf75faa74d540ab24acb0afea5dcc8d70600a7445
  • Some local minima
View GitHub Profile
# Validate Attention
import math
from flax.linen.attention import dot_product_attention
import jax
import jax.numpy as jnp
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
@maximus12793
maximus12793 / BOOSTwithPython3
Created March 30, 2017 21:49 — forked from melvincabatuan/BOOSTwithPython3
Compile BOOST with Python3 support
1. Check Python3 root
>>> import sys
>>> import os
>>> sys.executable
'/usr/local/bin/python3'
OR
$ which python3
/usr/local/bin/python3
@maximus12793
maximus12793 / lab3.org
Created October 25, 2015 05:37 — forked from kini/lab3.org
README for Lab 3, CS 429 Fall 2015

Compiler Lab: Generating Assembly Code

Introduction

  • Assigned: Oct. 14
  • Due: Oct. 30, 11:59 PM

Note: Keshav Kini (krkini@utexas.edu) is the lead TA for this lab assignment.