Skip to content

Instantly share code, notes, and snippets.

@odarbelaeze
Created November 11, 2017 17:29
Show Gist options
  • Save odarbelaeze/373c8419b252572bbed1dea089a41837 to your computer and use it in GitHub Desktop.
Save odarbelaeze/373c8419b252572bbed1dea089a41837 to your computer and use it in GitHub Desktop.
Functional approach to a Tensor implementation.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"# Soy el usuario\n",
"\n",
"def sum_tensor(sub, sup):\n",
" return sum(sub) + sum(sup)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"# Negated tensor\n",
"\n",
"def neg_sum_tensor(sub, sup):\n",
" return - sum_tensor(sub, sup)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"def null_tensor(sub, sup):\n",
" return sum_tensor(sub, sup) + neg_sum_tensor(sub, sup)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"null_tensor((1, 1, 1), ())"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {},
"outputs": [],
"source": [
"class Tensor(object):\n",
" \n",
" def __init__(self, shape, func):\n",
" self.shape = shape\n",
" self.func = func\n",
" \n",
" def __call__(self, sub, sup):\n",
" width, height = self.shape\n",
" if len(sub) != width or len(sup) != height:\n",
" raise ValueError('Wachaut!')\n",
" return self.func(sub, sup)\n",
" \n",
" def __add__(self, other):\n",
" if self.shape != other.shape:\n",
" raise ValueError('Shapes should match!')\n",
" return Tensor(self.shape, lambda sub, sup: self.func(sub, sup) + other.func(sub, sup))\n",
" \n",
" @classmethod\n",
" def from_values(cls, shape, values):\n",
" return cls(shape, lambda sub, sup: values.get((sub, sup), 0))"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"t = Tensor((2, 2), sum_tensor)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"t((1,1),(1,1))"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
"k = t + t"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"8"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"k((1,1),(1,1))"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [],
"source": [
"dict_of_values = {\n",
" ((0,0), (0,1)): 3, # The first sumand\n",
" ((0,1), (1,3)): -2 # The second sumand\n",
"}\n",
"\n",
"T = Tensor.from_values((2, 2), dict_of_values)"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"T((2,2),(2,2))"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"3"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"T((0,0),(0,1))"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"F = T + k\n"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"5"
]
},
"execution_count": 34,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"F((0,0),(0,1))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment