The file is in the directory bci_framework, which is why printing out it's path shows you that directory, but you aren't. Wherever you are, it doesn't have bci_framework as a sibling.
Print out os.getcwd() to determine your current location. Any relative paths to chdir will be relative to that location, not to the location of the file.
For example, if you are in the stackoverflow directory below, and run python ./abhishek/bci_framework/my_file.py, your current directory is stackoverflow. Going up one directory will not contain the bci_framework directory.
stackoverflow/
davidism/
abhishek/
bci_framework/
my_file.py