Questions tagged [checkpoint]

Check Point Software Technologies is a widely deployed brand of firewalls and other security and networking products.

Check Point Software Technologies is a widely deployed brand of firewalls and other security and networking products.

304 questions
38
votes
4 answers

Tensorflow: How to convert .meta, .data and .index model files into one graph.pb file

In tensorflow the training from the scratch produced following 6 files: events.out.tfevents.1503494436.06L7-BRM738 model.ckpt-22480.meta checkpoint model.ckpt-22480.data-00000-of-00001 model.ckpt-22480.index graph.pbtxt I would like to…
Rafal
  • 479
  • 1
  • 4
  • 10
23
votes
6 answers

"SSL network extender service is down" error in IE11

Using CheckPoint I'm trying to use a VPN access from work to my clients site, which worked fine in Windows 7 and 8. But in Windows 10 I'm getting the error "ssl network extender service is down..." I get the error message just at the beginning of…
Squazz
  • 3,912
  • 7
  • 38
  • 62
16
votes
10 answers

Checkpoint VPN issue: Connectivity with VPN service is lost

I have installed SecuRemote Client of checkpoint E75.30 on my computer running Windows 8. When I try to perform any of SecuRemote functions e.g. See client, Add client, See options etc. it gives the error "Connectivity with VPN service is lost" I…
user1997268
  • 287
  • 1
  • 6
  • 15
10
votes
5 answers

KeyError: Failed to format this callback filepath

I am trying to obtain the validation accuracy and the choose to save the model having the best accuracy.But after the 1st epoch,it is showing the checkpoint error. filepath="tumor_detection-{epoch:02d}-{val_acc:.2f}.hdf5" # save the model with the…
Shreyasi Ghosh
  • 101
  • 1
  • 2
  • 4
10
votes
3 answers

Spark RDD checkpoint on persisted/cached RDDs are performing the DAG twice

When I run code such as the following: val newRDD = prevRDD.map(a => (a._1, 1L)).distinct.persist(StorageLevel.MEMORY_AND_DISK_SER) newRDD.checkpoint print(newRDD.count()) and watch the stages in Yarn, I notice that Spark is doing the DAG…
Glenn Strycker
  • 4,816
  • 6
  • 31
  • 51
9
votes
1 answer

Tensorflow: loss resets after successfully restored checkpoint

There are no errors when saving or restoring. The weights appear to have restored correctly. I am trying to build my own minimal character level RNN by following karpathy/min-char-rnn.py, sherjilozair/char-rnn-tensorflow, and the Tensorflow RNN…
King Long Tse
  • 295
  • 1
  • 2
  • 10
9
votes
4 answers

Checkpoint/restart using Core Dump in Linux

Can Checkpoint/restart be implemented using the core dump of a process? The core file contains a complete memory dump of the process, thus in theory it should be possible to restore the process to the same state it was in when the core was dumped.
rogue_knight9
  • 561
  • 1
  • 6
  • 11
9
votes
3 answers

SVN tagging equivalent in TFS 2012

I recently migrated to the TFS 2012 and I have worked with SVN for a long time. In SVN I used "Tags" to mark some important "checkpoints" of development, ie when I finished a software version (alpha, beta) I created a Tag for that version. If some…
robsonrosa
  • 2,548
  • 5
  • 23
  • 31
8
votes
5 answers

How to remove all fields with NULL value in Logstash filter

I am reading checkpoint log file with csv format with logstash and some fields have null value. i want to remove all fields with null value. i can not foresee exactly which fields(keys) will have null value because i have 150 columns in the csv file…
tomer
  • 231
  • 2
  • 4
  • 12
7
votes
1 answer

SQL Server checkpoints

can anyone explain when SQL Server issues a checkpoint?
Anoop
  • 2,071
  • 5
  • 25
  • 27
7
votes
2 answers

Keras model training memory leak

I'm new with Keras, Tensorflow, Python and I'm trying to build a model for personal use/future learning. I've just started with python and I came up with this code (with help of videos and tutorials). My problem is that my memory usage of Python is…
Sly Shark
  • 111
  • 1
  • 2
  • 5
6
votes
1 answer

Docker - Cannot checkpoint container

I am trying to use checkpoint in a busybox image. At first I created a regular loop and then printing the numbers. docker run -d --name simple13 busybox /bin/sh -c "i=0; while true; do echo $i; i=$(expr $i + 1); sleep 1; done" docker logs -f…
Anik Barua
  • 2,911
  • 3
  • 10
  • 8
5
votes
1 answer

How to convert a checkpoint to a Keras .h5 model?

I have a tensorflow model that saves checkpoints, but I need to to load the weights and save the Kereas .h5 model. How can I do that?
5
votes
1 answer

Flink Checkpoint Failure - Checkpoints time out after 10 mins

We got one or two CheckPoint Failure during processing data every day. The data volume is low, like under 10k, and our interval setting is '2 minutes'. (The reason for processing very slow is we need to sink the data to another API endpoint which…
Brian Z
  • 99
  • 1
  • 9
5
votes
1 answer

AWS Kinesis Stream Checkpointing

I have an application that's capable of handling duplicate Kinesis stream records. We're considering the approaches we could take in terms of handling failures. And the following approach was brought up: If an exception is caught during…
ddolce
  • 739
  • 2
  • 10
  • 30
1
2 3
20 21