msaeed3 commited on
Commit
fbae363
·
1 Parent(s): cc2dc5a

remove matplotlib

Browse files
Files changed (2) hide show
  1. .gitignore +5 -0
  2. py3/hw/cnn_lstm.py +1 -2
.gitignore ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ *.bk
2
+ *.old
3
+ *.important
4
+ **/.ipynb_checkpoints/
5
+ **/__pycache__/
py3/hw/cnn_lstm.py CHANGED
@@ -1,8 +1,7 @@
1
 
2
  import torch
3
  from torch import nn
4
- import matplotlib.pyplot as plt
5
- import matplotlib.patches as patches
6
 
7
  class BidirectionalLSTM(nn.Module):
8
 
 
1
 
2
  import torch
3
  from torch import nn
4
+
 
5
 
6
  class BidirectionalLSTM(nn.Module):
7