Primary competition visual

Task Mate Kenyan Sign Language Classification Challenge

Helping Kenya
$5 000 USD
Completed (~4 years ago)
Classification
Computer Vision
588 joined
177 active
Starti
Nov 07, 21
Closei
Feb 27, 22
Reveali
Feb 27, 22
User avatar
Koleshjr
Multimedia university of kenya
fastai v2 submission
Help Ā· 2 Feb 2022, 08:19 Ā· 2

I am having trouble creating the submission file of my fastaiv2 model. Anyone who can help me with a code snippet of how to create the submission file using fastaiv2 kindly

Discussion 2 answers

This is the v1 snippet from the starter notebook:

import os

submission = pd.DataFrame()

submission["ID"] = test_df["img_IDS"]

for i, c in enumerate(learn.data.classes):

print(c)

submission[c] = preds_test[:,i]

submission.head()

Replace learn.data.classes with learn.data.vocab

2 Feb 2022, 09:31
Upvotes 0
User avatar
Koleshjr
Multimedia university of kenya

Thankss