Phantom - A Rust based deep learning framework
/ 2 min read
What is Phantom?
Phantom is a forward mode automatic differentiation and deep learning library I have been working on. It is written from scratch in Rust and implements common deep learning and tensor operations. This was inspired by all of the growth of machine learning in Rust with libraries like candle and burn. Burn is a work in progress but backpropogation is functional with common tensor operations. I am working on a GPU backend at the moment.
Examples
Lets take a look at what Phantom looks like. Starting with a few simple examples of tensor arithmetic. Tensors can be created by allocating a slice of data to put into memory, and specifying the Device type. The Device only specifies where the tensor is stored, not the backend for the program as tensors cna be moved around to different devices as needed. Rust’s type system makes tagging the tensor to a specific device really intuitive. If you look closely the tensor also does not specify a data type, it is inferred from the slice of input data. Tensors are generic across types and will support up and downcasting where possible.
Now that we have our tensors and can do some simple math with them lets actually compute the gradients. To compute the gradients just call backward
on the specified tensor. The gradients are calculated and returned as a GradientMap
that supports standard HashMap operations.
Afterword
Phantom is a really simple framework that is designed to be intuitive and the codebase readable. I am working on other backends like GPU support and would like to one day support multi-device training. If you want to check out Phantom you can find it on GitHub.