QiYang

Results 8 issues of QiYang

I used tf.reset_default_graph() in tensorflow 1.x to repeat run a cell and it worked well (to generate many trianed model in one run). However, in tensorflow 2.0, tf.compat.v1.reset_default_graph() is not...

Can't train the DQN!, I have installed gym[all] and tensorflow 1.9.0 with python 3.6.8, any idea? `$ python main.py --network_header_type=nature --env_name=Breakout-v0 Traceback (most recent call last): File "main.py", line 10,...

hello, I am a bit of confuse about reading this code about calculating A-softloss

Hello, I use python 3.6 + tensorflow 1.9.0 to do a classification task by finetuning Alexnet. In kratzert's srouce code, the range of data is [0,255] and the image is...

I trained the model in Windows and now I want to conduct the inference in Linux. However, model initialization was failed. nerfstudio version is 1.0.2, python version is 3.10 Any...

Taking the N-body minist script as an example, the code can't be executed with pytorch 2.0.1 due to the compatibility issue of pytorch_lightning. Is there any workarounds to bypass these...

Great work! Congratulation! I just curious why the self.time_marching() method is called twice for both the high-frequency and low-frequency Fourier features, in the "kno.py" line 148 and line 149, did...

I have groundwater depth observations and I put them into aquacrop as follows, ``` # initialize the model model_os = AquaCropModel( sim_start_time=plantingDate[0].strftime('%Y/%m/%d'), sim_end_time=harvestDate[-1].strftime('%Y/%m/%d'), weather_df=weather_df, soil=soil, crop=cropObj, initial_water_content=InitialWaterContent(value=['FC']), groundwater = GroundWater(water_table="Y",...