Home
Jian Chen
Cancel

Repo: purediffusion

I created a repo, purediffusion. It is also available through pip: pip install purediffusion purediffusion is a torch implementation I used for DDPM with DDIM sampling. This implementation is no...

Paper Accepted: LACE

Our paper LACE, a diffusion model for layout generation is accepted by ICLR 2024 and is currently available on arXiv. Code is will be available at: https://github.com/puar-playground/LACE

Birthday on the moon.

This is a short mix of two songs the “happy birthday to you” & “fly me to the moon”. Listen to the MIDI demo: audio The cover ima...

Paper Accepted: LRA-Diffusion

Our paper LRA-diffusion for learning from nosiy labels is accepted by NeurIPS 2023 and is available on arXiv!!! Our model achieved state-of-the-art accuracy on three datasets. The results are lis...

Hedwig's Theme fingerstyle guitar.

This is the fingerstyle guitar tab for the Hedwig’s Theme of the Harry Potter movies. Listen to the MIDI demo: audio The cover image ...

Scatter plot demo Heart & Impulse

Here is a nice scatter plot function. It takes two arrays for the x and y axis of 2D points as input. The python script is available here: scatter plot. Here are two demos. Lets draw a heart usin...

CLIP image encoder wrapper

This is a wrapper for CLIP image encoder provided in the python package openai-clip. The CLIP encoder take a transformed tensor as input. However, if you want to use CLIP as a component in your ne...

陽だまりにて和む猫 fingerstyle guitar.

This is the fingerstyle guitar tab for the music 陽だまりにて和む猫 (A Cat Relaxing in the Sun) from the video game 空の軌跡. I recorded this arrangement at: here.

A music piece from my friend Refar.

This is a piece from my friend refar. I love it so much that I made a guitar tab for it. Listen to the MIDI demo: audio

A line plot function

import numpy as np import seaborn as sns import matplotlib matplotlib.use('TKAgg') from matplotlib import pyplot as plt ​ def my_plot(data, legend, xtick, x_name='x', y_name='y', colors=sns.color_...