-
Traceback (most recent call last):
File "D:\Seq2seq-Chatbot-for-Keras-master\conversation.py", line 151, in
out = Dense(dictionary_size/2, activation="relu", name='relu-activation')(merge_lay…
-
Hello @rainLiuplus @JiahaoYao, after converting the ResNet50 of the MXnet model zoo to the Keras .h5 format, I have noticed that the accuracy after conversion is not good. I have tried the mxnet infer…
-
Using this issue to track all the changes made on keras code, to avoid confusion for keras developers and future work.
1. Override Keras model with mxnet model
2. Kernel shape in Conv layers, provi…
-
For some reason, I have to use ELMo in Keras platform. When I try to write a Keras Layer for ELMo, I notice that when the input of **BidirectionalLanguageModel** is keras.layer.Input, the whole progra…
-
你好,想请问下,我用你的代码训练yolov4_mobilenet,会出现下面这个报错:
Traceback (most recent call last):
File "train.py", line 282, in
main(args)
File "train.py", line 167, in main
callbacks=callbacks)
F…
-
### Description
Hi all,
I'm trying to use json serialization and deserialization as a simple way of sharing models between applications, but I think i run into a strange bug.
As far I understood, i…
-
This is the code
```
TPU_WORKER = 'grpc://' + os.environ['COLAB_TPU_ADDR']
import tensorflow as tf
tpu_model = tf.contrib.tpu.keras_to_tpu_model(
model.keras_model,
strategy=tf.contrib.tpu.T…
-
Hello, may I ask if this is the reproduced code from a paper?
-
Works in Keras 2 but not in Keras 3.
```python
!pip install keras-nightly -q
import tensorflow as tf # 2.15
import keras
from keras import layers
import numpy as np
keras.__version__ # 3.0.…
innat updated
5 months ago
-
```python
# DistilBERT 토크나이저 로드
tokenizer = DistilBertTokenizer.from_pretrained('monologg/distilkobert')
# 데이터를 DistilBERT 입력 형식으로 변환하는 함수 정의
def convert_to_input(df, tokenizer, max_length=400):…