Skip to content
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1d3578b
Initial addition of my (empty) files to my fork
s4583222 Oct 2, 2022
a8b7dd4
Wrote my data loading code
s4583222 Oct 4, 2022
b334020
Added the method to destroy images and Unet model
s4583222 Oct 9, 2022
2e9b892
Wrote my train file and have debugged my code
s4583222 Oct 10, 2022
10ddc52
Got code running on Rangpur
s4583222 Oct 12, 2022
c4d1bf1
Overhaul of my UNET and diffusion functions`
s4583222 Oct 12, 2022
d19cc69
Can load in model
s4583222 Oct 12, 2022
7d2f3ec
Rewrites of Unet and training
s4583222 Oct 13, 2022
0127080
Network able to generate brain images
s4583222 Oct 14, 2022
598a69a
increased UNET num trainable param and fixes
s4583222 Oct 15, 2022
1861969
Adding images that I can put in the readme
s4583222 Oct 15, 2022
f390de6
Testing images
s4583222 Oct 15, 2022
f047a67
Testing but with images in github
s4583222 Oct 15, 2022
ef0924d
Images displaying on readme
s4583222 Oct 15, 2022
4d04f49
smaller images for readme
s4583222 Oct 15, 2022
c56a363
Centering image
s4583222 Oct 15, 2022
7a6866d
scaled up image
s4583222 Oct 15, 2022
4ccce98
larger images
s4583222 Oct 15, 2022
2fd0c40
Adding images for read me
s4583222 Oct 16, 2022
963ec13
updating images
s4583222 Oct 16, 2022
0cd6a6d
Delete test.png
s4583222 Oct 16, 2022
32c105b
updating images
s4583222 Oct 16, 2022
020e3e5
testing images
s4583222 Oct 16, 2022
c704ccd
Brain images
s4583222 Oct 16, 2022
7a8e1d5
More brain images
s4583222 Oct 16, 2022
76693aa
more images
s4583222 Oct 16, 2022
2d4eca7
Updated README.MD
s4583222 Oct 16, 2022
b534686
obvious spelling mistake
s4583222 Oct 16, 2022
9483e13
obvious spelling mistake
s4583222 Oct 16, 2022
baf681f
Commenting my code
s4583222 Oct 16, 2022
006cfe6
Merge branch 'shakes76:topic-recognition' into topic-recognition
s4583222 Nov 9, 2022
6cc9721
Fixed image links
s4583222 Nov 10, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Testing images
  • Loading branch information
s4583222 authored Oct 15, 2022
commit f390de6b64f5974c6e8744c97d45ce1ae896e670
8 changes: 4 additions & 4 deletions recognition/s4583222_Solution/README.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# **Stable Diffusion on OASIS Brain Dataset**
# **Stable Diffusion on the OASIS Brain Dataset**
**COMP3710 Report by Thomas Jellett (45832220)**

## **Stable Diffusion:**
Expand All @@ -8,8 +8,8 @@ There are two main processes in diffusion, the ***Forward Diffusion Process*** a
- **Forward Diffusion Process** is when noise is gradually added to the image until you get pure noise. And,
- **Reverse Diffusion Process** is the learned process where a neural network is trained to denoise the image from pure noise to an actual image.

![Dog_diffusion](https://miro.medium.com/max/828/0*v12mDJwIKWn-_y8L.png)
Reference: https://towardsdatascience.com/stable-diffusion-best-open-source-version-of-dall-e-2-ebcdf1cb64bc
![Generated_brain](../Git%20images/455_0_0_backward.png)


## **File Structure:**
The code was written in python and has been split up into 4 files. Each file serves a different purpose.
Expand All @@ -20,7 +20,7 @@ The code was written in python and has been split up into 4 files. Each file ser
- **predict.py**: The predict file loads up a previously trained model and generates results.

## **Loading Training Data:**

To load the Oasis Brain
## **UNET Model:**

## **Diffusion:**
Expand Down