Home
last modified time | relevance | path

Searched refs:global_step (Results 1 – 25 of 32) sorted by relevance

12

/dports/devel/py-bullet3/bullet3-3.21/examples/pybullet/gym/pybullet_envs/minitaur/agents/tools/
H A Dloop.py125 global_step = sess.run(self._step)
128 if max_step and global_step >= max_step:
130 phase, epoch, steps_in = self._find_current_phase(global_step)
135 tf.logging.info(message.format(phase.name, phase_step, global_step))
142 summary, mean_score, global_step, steps_made = sess.run(phase.op, phase.feed)
144 self._store_checkpoint(sess, saver, global_step)
170 def _find_current_phase(self, global_step): argument
182 epoch = int(global_step // epoch_size)
183 steps_in = global_step % epoch_size
218 def _store_checkpoint(self, sess, saver, global_step): argument
[all …]
/dports/devel/py-bullet3/bullet3-3.21/examples/pybullet/gym/pybullet_envs/agents/tools/
H A Dloop.py128 global_step = sess.run(self._step)
131 if max_step and global_step >= max_step:
133 phase, epoch, steps_in = self._find_current_phase(global_step)
138 tf.logging.info(message.format(phase.name, phase_step, global_step))
145 summary, mean_score, global_step, steps_made = sess.run(phase.op, phase.feed)
147 self._store_checkpoint(sess, saver, global_step)
173 def _find_current_phase(self, global_step): argument
185 epoch = int(global_step // epoch_size)
186 steps_in = global_step % epoch_size
221 def _store_checkpoint(self, sess, saver, global_step): argument
[all …]
/dports/misc/py-gluonnlp/gluon-nlp-0.10.0/scripts/parsing/parser/
H A Ddep_parser.py157 global_step = 0
164 while global_step < train_iters:
180 global_step += 1
181 if global_step % validate_every == 0:
182 bar = Progbar(target=min(validate_every, train_iters - global_step))
192 if global_step < train_iters:
194 if global_step > save_after and UAS > best_UAS:
/dports/math/eukleides/eukleides-1.5.4/src/common/
H A Dsetting.c84 double global_step = 3; variable
89 global_step = local_step = POPn; in set_global_step()
90 if (global_step <= 0) runtime_error(_("invalid size")); in set_global_step()
251 global_step = local_step = 3; in restore_default_settings()
267 local_step = global_step; in restore_global_settings()
H A Dsetting.h56 extern double global_step;
/dports/math/py-optuna/optuna-2.10.0/optuna/integration/
H A Dtensorflow.py67 global_step = run_values.results
69 if self._timer.should_trigger_for_step(global_step):
70 self._timer.update_last_triggered_step(global_step)
/dports/misc/py-gluonnlp/gluon-nlp-0.10.0/scripts/word_embeddings/
H A Devaluation.py148 global_step=0): argument
194 global_step=global_step,
202 def evaluate_analogy(args, token_embedding, ctx, logfile=None, global_step=0): argument
257 global_step=global_step,
H A Dtrain_glove.py327 global_step=epoch * len(indices) + i * args.batch_size,
355 def evaluate(args, model, vocab, global_step, eval_analogy=False): argument
379 args.logdir, 'similarity.tsv'), global_step=global_step)
H A Dtrain_sg_cbow.py265 def evaluate(args, embedding, vocab, global_step, eval_analogy=False): argument
293 args.logdir, 'similarity.tsv'), global_step=global_step)
/dports/devel/py-bullet3/bullet3-3.21/examples/pybullet/gym/pybullet_envs/
H A Dgym_manipulator_envs.py19 self.scene.global_step()
58 self.scene.global_step()
120 self.scene.global_step()
198 self.scene.global_step()
H A Dgym_pendulum_envs.py32 self.scene.global_step()
77 self.scene.global_step()
H A Dscene_abstract.py47 def global_step(self): member in Scene
H A Dgym_locomotion_envs.py67 self.scene.global_step()
/dports/graphics/tesseract/tesseract-5.0.0/src/lstm/
H A Dtfnetwork.pb.cc500 if (this->global_step() != 0) { in SerializeWithCachedSizes()
501 ::google::protobuf::internal::WireFormatLite::WriteInt64(2, this->global_step(), output); in SerializeWithCachedSizes()
607 if (this->global_step() != 0) { in InternalSerializeWithCachedSizesToArray()
608 target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(2, this->global_step(), in InternalSerializeWithCachedSizesToArray()
754 if (this->global_step() != 0) { in ByteSizeLong()
755 total_size += 1 + ::google::protobuf::internal::WireFormatLite::Int64Size(this->global_step()); in ByteSizeLong()
837 if (from.global_step() != 0) { in MergeFrom()
838 set_global_step(from.global_step()); in MergeFrom()
H A Dtfnetwork.cpp136 return model_proto_.global_step(); in InitFromProto()
H A Dtfnetwork.proto47 int64 global_step = 2; field
H A Dtfnetwork.pb.h241 ::google::protobuf::int64 global_step() const;
360 inline ::google::protobuf::int64 TFNetworkModel::global_step() const { in global_step() function
/dports/misc/mxnet/incubator-mxnet-1.9.0/python/mxnet/contrib/
H A Dtensorboard.py72 self.summary_writer.add_scalar(name, value, global_step=param.epoch)
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/python/mxnet/contrib/
H A Dtensorboard.py72 self.summary_writer.add_scalar(name, value, global_step=param.epoch)
/dports/games/leela-zero/leela-zero-0.17/training/tf/
H A Dnet_to_model.py36 save_path = tfprocess.saver.save(tfprocess.session, path, global_step=0)
H A Dtfprocess.py153 self.global_step = tf.Variable(0, name='global_step', trainable=False)
286 self.step_op = tf.assign_add(self.global_step, 1)
430 steps = tf.train.global_step(self.session, self.global_step)
467 global_step=steps)
479 global_step=steps)
/dports/misc/py-gluoncv/gluon-cv-0.9.0/scripts/action-recognition/
H A Dtrain_recognizer.py502 …sw.add_scalar(tag='train_acc_top1_iter', value=train_metric_score*100, global_step=epoch * num_tra…
503 …sw.add_scalar(tag='train_loss_iter', value=train_loss_iter, global_step=epoch * num_train_iter + i)
504 …sw.add_scalar(tag='learning_rate_iter', value=trainer.learning_rate, global_step=epoch * num_train…
518 … sw.add_scalar(tag='train_loss_epoch', value=train_loss_epoch/num_train_iter, global_step=epoch)
532 sw.add_scalar(tag='val_loss_epoch', value=loss_val, global_step=epoch)
533 sw.add_scalar(tag='val_acc_top1_epoch', value=acc_top1_val*100, global_step=epoch)
/dports/misc/py-gluoncv/gluon-cv-0.9.0/scripts/gan/srgan/
H A Dtrain_srgan.py180 def plot_loss(losses_log,global_step,epoch, i): argument
185 sw.add_scalar('err', {key : loss}, global_step)
/dports/misc/py-gluoncv/gluon-cv-0.9.0/scripts/gan/cycle_gan/
H A Dtrain_cgan.py385 def plot_loss(losses_log,global_step,epoch, i): argument
390 sw.add_scalar('loss', {key : loss}, global_step)
/dports/math/vtk9/VTK-9.1.0/ThirdParty/ioss/vtkioss/exodus/
H A DIoex_BaseDatabaseIO.h262 int get_database_step(int global_step) const;

12