Kenan Sooklall
Kenan Sooklall
@vaibhav-jain Your getting a shape error because your labels have shape (1, 10), but your final layer is just 2 nodes. A fix would be ``` net = tflearn.input_data(shape=[None, 2])...
I had the same issue then ran `conda install -c anaconda pyqt`, but now I have this issue ``` Traceback (most recent call last): File "/home/kenan/anaconda3/envs/labelme/lib/python3.10/site-packages/labelme/widgets/canvas.py", line 618, in paintEvent...
me three, here is a bit more context on how I came across this error: ``` input_ = tf.placeholder(tf.int32, [None, None], name='input') targets = tf.placeholder(tf.int32, [None, None], name='target') learning_rate =...
Have you tired using the huggingface code in the home page? ``` from transformers import pipeline, set_seed from transformers import BioGptTokenizer, BioGptForCausalLM model = BioGptForCausalLM.from_pretrained("microsoft/biogpt-large") # remove large if the...
@samualtnorman Were you able to generate music using wav files and this network architecture?