This commit is contained in:
wassname
2022-02-11 20:09:34 +08:00
parent 7742b48f69
commit 241a53b299
+5 -3
View File
@@ -1,12 +1,14 @@
Modified by wassname from the below: Modified by wassname from the below:
Changes: Changes:
- [ ] clamp weight with epsilon for stablity - [x] clamp weight with epsilon for stablity
- from `p.data *= (p.data>=0)` - from `p.data *= (p.data>=0)`
- to `p.data = torch.clamp(p.data, min=eps)` - to `p.data = torch.clamp(p.data, min=eps)`
- [ ] try log t - [ ] try log t
- [ ] try not mean as much in intensity layer - [x] try not mean as much in intensity layer
- [ ] use pytorch lightning - [x] use pytorch lightning
- [x] fix potential data leak where label is fed to lsm
- [x] commit notebook with plots of val
# Fully Neural Network based Model for General Temporal Point Process(Neurips 2019,Takahiro Omi) # Fully Neural Network based Model for General Temporal Point Process(Neurips 2019,Takahiro Omi)