NiniCat commited on
Commit
ae0ec65
1 Parent(s): 306ab4d

Updated cas13 model

Browse files
cas13_model/fingerprint.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d5b15e416a19d6d5913984c85bd8a9cda2a0b18eb5d6205af36a804c5858a22
3
+ size 55
cas13_model/keras_metadata.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d0f11e71ac2a87c7492ffcffb4952fa20be69acdf5ae4a0892087fe0534518e
3
+ size 13631
cas13_model/saved_model.pb ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4331dfc2ceff3b436baa2e10ccaa863d4037bcfa0183195b3c0f43d44cda77fb
3
+ size 242327
cas13_model/variables/variables.data-00000-of-00001 ADDED
Binary file (948 kB). View file
 
cas13_model/variables/variables.index ADDED
Binary file (877 Bytes). View file
 
tiger.py CHANGED
@@ -318,8 +318,8 @@ def predict_off_target(off_targets: pd.DataFrame, model: tf.keras.Model):
318
  def tiger_exhibit(transcripts: pd.DataFrame, mode: str, check_off_targets: bool, status_update_fn=None):
319
 
320
  # load model
321
- if os.path.exists('model'):
322
- tiger = tf.keras.models.load_model('model')
323
  else:
324
  print('no saved model!')
325
  exit()
 
318
  def tiger_exhibit(transcripts: pd.DataFrame, mode: str, check_off_targets: bool, status_update_fn=None):
319
 
320
  # load model
321
+ if os.path.exists('cas13_model'):
322
+ tiger = tf.keras.models.load_model('cas13_model')
323
  else:
324
  print('no saved model!')
325
  exit()