-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a timing plan for the support for ALFRED, Dialfred, and Tidy Task? #3
Comments
And when I run the following script: python main.py \
--mode teach_eval_tfd \
--split valid_unseen \
--gpt_embedding_dir ./data/gpt_embeddings \
--teach_data_dir ./data/teach-dataset \
--server_port 99 \
--episode_in_try_except \
--use_llm_search \
--use_constraint_check \
--run_error_correction_llm \
--zoedepth_checkpoint ./checkpoints/ZOEDEPTH-model-00015000.pth \
--solq_checkpoint ./checkpoints/SOLQ-model-00023000.pth \
--set_name HELPER_teach_tfd_validunseen\
--use_openai\ The program will be stopped in the line 2444 of teach/src/teach/simulators/simulator_THOR.py:
Is there a solution to solve it ? |
Hi, we currently do not have a timeframe for releasing the other tasks, but hope to get to it in the next few weeks. Have you verified that your x display is configured properly? For example, are you able to run first steps here? |
yes, i can run the first step. |
thank you for reply! I want to know if I can change the TeachDataset to my own dataset and do not change other architecture of HELPER? |
Can you please provide your PC config and steps you took to reproduce the issue? Regarding the dataset, could you specify the format of your data? For example, is it in the same format as the TEACh tfd or edh instances? If that is the case, you could read in your custom files as a tfd or edh instance. |
I ran the program in Distributor ID: Ubuntu And I just follow your instructions in Readme to install and then run the script above mentioned. |
The data I want to use includes just the instruction, scene_name and the final state for evaluation like below:
If I can apply this data into HELPER ? |
You would need to reformat the data into the tfd instance format that TEACh provides. See their repo for more details. Here's an example of a part of one of their json files:
Once you have data in this format, you can input it as an argument to We have also recently added ALFRED and the Tidy Task to our codebase. You can find more details on these updates in the ALFRED branch and the Tidy Task branch. Support for Dialfred will be available soon. |
Hello, I have read your work and it's great! It seems that HELPER only run in the teach dataset, can I make it run in other datasets which only include nl instruction and final task goal like ALFRED?
The text was updated successfully, but these errors were encountered: